jwt单点登录
程序员文章站
2022-03-19 14:27:55
...
转载文章:
来源:https://learnku.com/articles/12679/jwt-auth-blacklist-function
我要做:
给用户表加字段current_token
修改laravel配置文件。
jwt。php
'blacklist_enabled' => true,
然后,所有,登录时,
1、(如果user表的该用户有老token,先取出
执行
\Tymon\JWTAuth\Facades\JWTAuth::setToken($user->current_token )->invalidate();
)
2、生成新token。
3、要保存新token到user表。
4、返回新token给前端。
来源:https://learnku.com/articles/12679/jwt-auth-blacklist-function
我要做:
给用户表加字段current_token
修改laravel配置文件。
jwt。php
'blacklist_enabled' => true,
然后,所有,登录时,
1、(如果user表的该用户有老token,先取出
执行
\Tymon\JWTAuth\Facades\JWTAuth::setToken($user->current_token )->invalidate();
)
2、生成新token。
3、要保存新token到user表。
4、返回新token给前端。