我尝试通过教程使用 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粉6383439952023-12-13 00:27:35
检查文档: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);