Unable to generate token using tymon jwt in laravel

10,764

Solution 1

You are using the newer version of the package. This requires that the User Model implements this contract. Solve it by doing this in your model:

use Tymon\JWTAuth\Contracts\JWTSubject;

class User extends Model implements JWTSubject {

Solution 2

Firstly you need to implement the Tymon\JWTAuth\Contracts\JWTSubject contract on your User model, which requires that you implement the two methods getJWTIdentifier() and getJWTCustomClaims().

Below is the example how your code could look. please make any changes necessary to suit your own needs.

<?php

namespace App;

use Tymon\JWTAuth\Contracts\JWTSubject;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable implements JWTSubject
{
    use Notifiable;

    // Rest omitted for brevity

    /**
     * Get the identifier that will be stored in the subject claim of the JWT.
     *
     * @return mixed
     */
    public function getJWTIdentifier()
    {
        return $this->getKey();
    }

    /**
     * Return a key value array, containing any custom claims to be added to the JWT.
     *
     * @return array
     */
    public function getJWTCustomClaims()
    {
        return [];
    }
}

Configure Auth guard

Note: This will only work if you are using Laravel 5.2 and above.

Inside the config/auth.php file you will need to make a few changes to configure Laravel to use the jwt guard to power your application authentication.

Make the following changes to the file:

'defaults' => [
    'guard' => 'api',
    'passwords' => 'users',
],

...

'guards' => [
    'api' => [
        'driver' => 'jwt',
        'provider' => 'users',
    ],
],

Here we are telling the api guard to use the jwt driver, and we are setting the api guard as the default.

Share:
10,764

Related videos on Youtube

schenker
Author by

schenker

Updated on June 04, 2022

Comments

  • schenker
    schenker almost 2 years

    I'm stuck with this for about 3 days. Basically, i'm trying to generate a JWT token in laravel using Tymon. This is my controller file.

    <?php
    namespace App\Http\Controllers;
    use Illuminate\Http\Request;
    use App\Http\Requests;
    use App\User;
    use JWTAuth;
    use JWT;
    use Tymon\JWTAuthExceptions\JWTException;
    use Tymon\JWTAuth\Contracts\JWTSubject as JWTSubject;
    
    class AuthenticateController extends Controller
    {
     public function index()
    {
     //   
    }
     public function authenticate(Request $request)
    {
    
        $user = User::where('email', $request->only('email'))->first(); 
        dd($user); //This does show some output      
        $token = JWTAuth::fromUser($user); //returns error message
    
        return ["error" => NULL, "token" => $token];
    
     }
    }
    

    I tested this api using Chrome postman, but it is reporting this error:

    ErrorException in JWT.php line 73: Argument 1 passed to Tymon\JWTAuth\JWT::fromUser() must be an instance of Tymon\JWTAuth\Contracts\JWTSubject, instance of App\User given, called in /Users/shankerm/mccadmin/laravel/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php on line 217 and defined

    Pls give me some advice. Im new to Laravel and struggling with this for a long time. Thanks.

Related