Laravel 9 JWT 注销问题 php-open-source-saver/jwt-auth
P粉809110129
P粉809110129 2023-12-12 08:38:04
0
1
451

我尝试通过教程使用 php-open-source-saver/jwt-auth https://blog.logrocket.com/implementing-jwt-authentication-laravel-9/

它工作正常,但我在注销时遇到一些问题。

Auth::logout();

当我注销并尝试调用我的测试方法时,它使用旧令牌。

class SubjectController extends Controller
{
    public function __construct()
    {
        $this->middleware('auth:api');
    }

    public function show($id)
    {
        $subject = Subject::find($id);

        return response(json_encode($subject))
            ->header('Content-Type','application/json');
    }
}


P粉809110129
P粉809110129

全部回复(1)
P粉638343995

检查文档:https://laravel-jwt-auth .readthedocs.io/en/latest/auth-guard/

logout()

注销用户 - 这将使当前令牌无效并取消设置经过身份验证的用户。

auth()->logout();

// Pass true to force the token to be blacklisted "forever"
auth()->logout(true);
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板