laravel JWT returns “error”: “Unauthorized” on login
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
|
show 5 more comments
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
Please, add the related code: route definition, the method in the controller, how are you doing the request (body & headers).
– HCK
Nov 21 '18 at 1:57
@HCK added the requested info
– keloa
Nov 21 '18 at 2:44
did you add the$this->middleware('auth:api', ['except' => ['login']]);
in the controller's constructor? Also, when you dophp artisan route:list
what endpoints (with middleware) are listed?
– HCK
Nov 21 '18 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 '18 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 '18 at 3:29
|
show 5 more comments
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
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
laravel jwt
edited Nov 21 '18 at 3:36
keloa
asked Nov 21 '18 at 1:49
keloakeloa
4519
4519
Please, add the related code: route definition, the method in the controller, how are you doing the request (body & headers).
– HCK
Nov 21 '18 at 1:57
@HCK added the requested info
– keloa
Nov 21 '18 at 2:44
did you add the$this->middleware('auth:api', ['except' => ['login']]);
in the controller's constructor? Also, when you dophp artisan route:list
what endpoints (with middleware) are listed?
– HCK
Nov 21 '18 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 '18 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 '18 at 3:29
|
show 5 more comments
Please, add the related code: route definition, the method in the controller, how are you doing the request (body & headers).
– HCK
Nov 21 '18 at 1:57
@HCK added the requested info
– keloa
Nov 21 '18 at 2:44
did you add the$this->middleware('auth:api', ['except' => ['login']]);
in the controller's constructor? Also, when you dophp artisan route:list
what endpoints (with middleware) are listed?
– HCK
Nov 21 '18 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 '18 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 '18 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 '18 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 '18 at 1:57
@HCK added the requested info
– keloa
Nov 21 '18 at 2:44
@HCK added the requested info
– keloa
Nov 21 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 at 3:29
|
show 5 more comments
0
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',
autoActivateHeartbeat: false,
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Please, add the related code: route definition, the method in the controller, how are you doing the request (body & headers).
– HCK
Nov 21 '18 at 1:57
@HCK added the requested info
– keloa
Nov 21 '18 at 2:44
did you add the
$this->middleware('auth:api', ['except' => ['login']]);
in the controller's constructor? Also, when you dophp artisan route:list
what endpoints (with middleware) are listed?– HCK
Nov 21 '18 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 '18 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 '18 at 3:29