The createToken()
method creates a Personal Access Token. By default, these tokens expire after 1 year (or 100 years, if created by laravel/passport <= 1.0.11). The expiration time for this type of token is not modified by the Passport::tokensExpireIn()
or Passport::refreshTokensExpireIn()
methods.
laravel/passport >= 7.0.4
Passport version 7.0.4 added a new method Passport::personalAccessTokensExpireIn()
that allows you to update the expiration time for personal access tokens. If you are on this version or later, you can add this method call to your AuthServiceProvider::boot()
method.
Passport::personalAccessTokensExpireIn(Carbon::now()->addDays(1));
laravel/passport < 7.0.4
If you are not yet on passport version 7.0.4, you can still modify the personal access token expiration time, but it is more manual. You will need to enable a new instance of the personal access grant with your desired expiration time. This can also be done in your AuthServiceProvider::boot()
method.
// If the server has already been resolved, get it out of the container
// and modify it. Otherwise, use an `afterResolving` callback so that
// it is not being forced to resolve here.
if ($this->app->resolved(\League\OAuth2\Server\AuthorizationServer::class)) {
$server = $this->app->make(\League\OAuth2\Server\AuthorizationServer::class);
$server->enableGrantType(new \Laravel\Passport\Bridge\PersonalAccessGrant(), new \DateInterval('P100Y'));
} else {
$this->app->afterResolving(\League\OAuth2\Server\AuthorizationServer::class, function ($server) {
$server->enableGrantType(new \Laravel\Passport\Bridge\PersonalAccessGrant(), new \DateInterval('P100Y'));
});
}
Note
Modifying the expires_at
field in the database will not do anything. The real expiration date is stored inside the token itself. Also, attempting to modify the exp
claim inside the JWT token will not work, since the token is signed and any modification to it will invalidate it. So, all your existing tokens will have their original expiration times, and there is no way to change that. If needed, you will need to regenerate new tokens.