laravel JWT returns “error”: “Unauthorized” on login











up vote
0
down vote

favorite












its been about three days and I couldn't solve this issue I have looked everywhere (the documentations, stackoverflow ...etc) but with no luck.



Anyway my problem is that whenever I send a POST request to the login api localhost:8000/api/auth/login I always get this error :



{
"error": "Unauthorized"
}


and here is my request body :



{
"email": "demo@demo.demo",
"password": "123321"
}


I have followed the official documentations : https://jwt-auth.readthedocs.io/en/develop/quick-start/



Edit 1



request header (postman) :



Content-Type: application/json



Routes :



Route::group([

'middleware' => 'api',
'prefix' => 'auth'

], function ($router) {

Route::post('login', 'AuthController@login');
Route::post('logout', 'AuthController@logout');
Route::post('refresh', 'AuthController@refresh');
Route::post('me', 'AuthController@me');

});


login function located in app/Http/Controllers/AuthController.php :



 public function login()
{
$credentials = request(['email', 'password']);

if (! $token = auth()->attempt($credentials)) {
return response()->json(['error' => 'Unauthorized'], 401);
}

return $this->respondWithToken($token);
}


Edit 2
here is the route list :



|        | GET|HEAD | /                |      | Closure                                     | web          |
| | POST | api/auth/login | | AppHttpControllersAuthController@login | api |
| | POST | api/auth/logout | | AppHttpControllersAuthController@logout | api,auth:api |
| | POST | api/auth/me | | AppHttpControllersAuthController@me | api,auth:api |
| | POST | api/auth/refresh | | AppHttpControllersAuthController@refresh | api,auth:api |


Edit 3



protected function create(array $data)
{
return User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => Hash::make($data['password']),
]);
}









share|improve this question
























  • Please, add the related code: route definition, the method in the controller, how are you doing the request (body & headers).
    – HCK
    Nov 21 at 1:57










  • @HCK added the requested info
    – keloa
    Nov 21 at 2:44










  • did you add the $this->middleware('auth:api', ['except' => ['login']]); in the controller's constructor? Also, when you do php artisan route:list what endpoints (with middleware) are listed?
    – HCK
    Nov 21 at 2:49












  • @HCK yes $this->middleware('auth:api', ['except' => ['login']]); exists in the constructor, I have updated the post with the route list
    – keloa
    Nov 21 at 2:56






  • 1




    I think that the error is right there: you are not encrypting the password when storing. Include the code when you store your users.
    – HCK
    Nov 21 at 3:29















up vote
0
down vote

favorite












its been about three days and I couldn't solve this issue I have looked everywhere (the documentations, stackoverflow ...etc) but with no luck.



Anyway my problem is that whenever I send a POST request to the login api localhost:8000/api/auth/login I always get this error :



{
"error": "Unauthorized"
}


and here is my request body :



{
"email": "demo@demo.demo",
"password": "123321"
}


I have followed the official documentations : https://jwt-auth.readthedocs.io/en/develop/quick-start/



Edit 1



request header (postman) :



Content-Type: application/json



Routes :



Route::group([

'middleware' => 'api',
'prefix' => 'auth'

], function ($router) {

Route::post('login', 'AuthController@login');
Route::post('logout', 'AuthController@logout');
Route::post('refresh', 'AuthController@refresh');
Route::post('me', 'AuthController@me');

});


login function located in app/Http/Controllers/AuthController.php :



 public function login()
{
$credentials = request(['email', 'password']);

if (! $token = auth()->attempt($credentials)) {
return response()->json(['error' => 'Unauthorized'], 401);
}

return $this->respondWithToken($token);
}


Edit 2
here is the route list :



|        | GET|HEAD | /                |      | Closure                                     | web          |
| | POST | api/auth/login | | AppHttpControllersAuthController@login | api |
| | POST | api/auth/logout | | AppHttpControllersAuthController@logout | api,auth:api |
| | POST | api/auth/me | | AppHttpControllersAuthController@me | api,auth:api |
| | POST | api/auth/refresh | | AppHttpControllersAuthController@refresh | api,auth:api |


Edit 3



protected function create(array $data)
{
return User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => Hash::make($data['password']),
]);
}









share|improve this question
























  • Please, add the related code: route definition, the method in the controller, how are you doing the request (body & headers).
    – HCK
    Nov 21 at 1:57










  • @HCK added the requested info
    – keloa
    Nov 21 at 2:44










  • did you add the $this->middleware('auth:api', ['except' => ['login']]); in the controller's constructor? Also, when you do php artisan route:list what endpoints (with middleware) are listed?
    – HCK
    Nov 21 at 2:49












  • @HCK yes $this->middleware('auth:api', ['except' => ['login']]); exists in the constructor, I have updated the post with the route list
    – keloa
    Nov 21 at 2:56






  • 1




    I think that the error is right there: you are not encrypting the password when storing. Include the code when you store your users.
    – HCK
    Nov 21 at 3:29













up vote
0
down vote

favorite









up vote
0
down vote

favorite











its been about three days and I couldn't solve this issue I have looked everywhere (the documentations, stackoverflow ...etc) but with no luck.



Anyway my problem is that whenever I send a POST request to the login api localhost:8000/api/auth/login I always get this error :



{
"error": "Unauthorized"
}


and here is my request body :



{
"email": "demo@demo.demo",
"password": "123321"
}


I have followed the official documentations : https://jwt-auth.readthedocs.io/en/develop/quick-start/



Edit 1



request header (postman) :



Content-Type: application/json



Routes :



Route::group([

'middleware' => 'api',
'prefix' => 'auth'

], function ($router) {

Route::post('login', 'AuthController@login');
Route::post('logout', 'AuthController@logout');
Route::post('refresh', 'AuthController@refresh');
Route::post('me', 'AuthController@me');

});


login function located in app/Http/Controllers/AuthController.php :



 public function login()
{
$credentials = request(['email', 'password']);

if (! $token = auth()->attempt($credentials)) {
return response()->json(['error' => 'Unauthorized'], 401);
}

return $this->respondWithToken($token);
}


Edit 2
here is the route list :



|        | GET|HEAD | /                |      | Closure                                     | web          |
| | POST | api/auth/login | | AppHttpControllersAuthController@login | api |
| | POST | api/auth/logout | | AppHttpControllersAuthController@logout | api,auth:api |
| | POST | api/auth/me | | AppHttpControllersAuthController@me | api,auth:api |
| | POST | api/auth/refresh | | AppHttpControllersAuthController@refresh | api,auth:api |


Edit 3



protected function create(array $data)
{
return User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => Hash::make($data['password']),
]);
}









share|improve this question















its been about three days and I couldn't solve this issue I have looked everywhere (the documentations, stackoverflow ...etc) but with no luck.



Anyway my problem is that whenever I send a POST request to the login api localhost:8000/api/auth/login I always get this error :



{
"error": "Unauthorized"
}


and here is my request body :



{
"email": "demo@demo.demo",
"password": "123321"
}


I have followed the official documentations : https://jwt-auth.readthedocs.io/en/develop/quick-start/



Edit 1



request header (postman) :



Content-Type: application/json



Routes :



Route::group([

'middleware' => 'api',
'prefix' => 'auth'

], function ($router) {

Route::post('login', 'AuthController@login');
Route::post('logout', 'AuthController@logout');
Route::post('refresh', 'AuthController@refresh');
Route::post('me', 'AuthController@me');

});


login function located in app/Http/Controllers/AuthController.php :



 public function login()
{
$credentials = request(['email', 'password']);

if (! $token = auth()->attempt($credentials)) {
return response()->json(['error' => 'Unauthorized'], 401);
}

return $this->respondWithToken($token);
}


Edit 2
here is the route list :



|        | GET|HEAD | /                |      | Closure                                     | web          |
| | POST | api/auth/login | | AppHttpControllersAuthController@login | api |
| | POST | api/auth/logout | | AppHttpControllersAuthController@logout | api,auth:api |
| | POST | api/auth/me | | AppHttpControllersAuthController@me | api,auth:api |
| | POST | api/auth/refresh | | AppHttpControllersAuthController@refresh | api,auth:api |


Edit 3



protected function create(array $data)
{
return User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => Hash::make($data['password']),
]);
}






laravel jwt






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 21 at 3:36

























asked Nov 21 at 1:49









keloa

4019




4019












  • Please, add the related code: route definition, the method in the controller, how are you doing the request (body & headers).
    – HCK
    Nov 21 at 1:57










  • @HCK added the requested info
    – keloa
    Nov 21 at 2:44










  • did you add the $this->middleware('auth:api', ['except' => ['login']]); in the controller's constructor? Also, when you do php artisan route:list what endpoints (with middleware) are listed?
    – HCK
    Nov 21 at 2:49












  • @HCK yes $this->middleware('auth:api', ['except' => ['login']]); exists in the constructor, I have updated the post with the route list
    – keloa
    Nov 21 at 2:56






  • 1




    I think that the error is right there: you are not encrypting the password when storing. Include the code when you store your users.
    – HCK
    Nov 21 at 3:29


















  • Please, add the related code: route definition, the method in the controller, how are you doing the request (body & headers).
    – HCK
    Nov 21 at 1:57










  • @HCK added the requested info
    – keloa
    Nov 21 at 2:44










  • did you add the $this->middleware('auth:api', ['except' => ['login']]); in the controller's constructor? Also, when you do php artisan route:list what endpoints (with middleware) are listed?
    – HCK
    Nov 21 at 2:49












  • @HCK yes $this->middleware('auth:api', ['except' => ['login']]); exists in the constructor, I have updated the post with the route list
    – keloa
    Nov 21 at 2:56






  • 1




    I think that the error is right there: you are not encrypting the password when storing. Include the code when you store your users.
    – HCK
    Nov 21 at 3:29
















Please, add the related code: route definition, the method in the controller, how are you doing the request (body & headers).
– HCK
Nov 21 at 1:57




Please, add the related code: route definition, the method in the controller, how are you doing the request (body & headers).
– HCK
Nov 21 at 1:57












@HCK added the requested info
– keloa
Nov 21 at 2:44




@HCK added the requested info
– keloa
Nov 21 at 2:44












did you add the $this->middleware('auth:api', ['except' => ['login']]); in the controller's constructor? Also, when you do php artisan route:list what endpoints (with middleware) are listed?
– HCK
Nov 21 at 2:49






did you add the $this->middleware('auth:api', ['except' => ['login']]); in the controller's constructor? Also, when you do php artisan route:list what endpoints (with middleware) are listed?
– HCK
Nov 21 at 2:49














@HCK yes $this->middleware('auth:api', ['except' => ['login']]); exists in the constructor, I have updated the post with the route list
– keloa
Nov 21 at 2:56




@HCK yes $this->middleware('auth:api', ['except' => ['login']]); exists in the constructor, I have updated the post with the route list
– keloa
Nov 21 at 2:56




1




1




I think that the error is right there: you are not encrypting the password when storing. Include the code when you store your users.
– HCK
Nov 21 at 3:29




I think that the error is right there: you are not encrypting the password when storing. Include the code when you store your users.
– HCK
Nov 21 at 3:29

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404230%2flaravel-jwt-returns-error-unauthorized-on-login%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404230%2flaravel-jwt-returns-error-unauthorized-on-login%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Dijon

Sphinx de Gizeh

xlwings: Save and Close