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']),
]);
}
laravel jwt
|
show 5 more comments
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']),
]);
}
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 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 dophp artisan route:listwhat 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
|
show 5 more comments
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']),
]);
}
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 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 dophp artisan route:listwhat 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
|
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 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 dophp artisan route:listwhat 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
|
show 5 more comments
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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 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 dophp artisan route:listwhat 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