为什么在我的注销功能中请求用户为空?

Why is the request user null in my logout function?

我正在使用 passport 在 Laravel 中实施身份验证 api。

我实现了登录api,但是注销有问题api。我的登录代码运行成功:

public function login(Request $request){
    $request->validate([
        'email'=> 'required|string|email',
        'password'=> 'required|string',
        'remember_me'=> 'boolean',
    ]);

    $credentials= request(['email','password']);

    if(!Auth::attempt(['email' => $request->email, 'password' => $request->password])){

        return response()->json([
            'message'=> 'Unauthorized'
        ],401);

    }
    Auth::attempt(['email' => $request->email, 'password' => $request->password]);
    $user=$request->user();

    $tokenResult = $user->createToken('Personal Access Token');
    $token = $tokenResult->token;

    if($request->remember_me)
        $token->expires_at= Carbon::now()->addWeek(1);

    $token->save();

    return response()->json([
        'access_token'=>$tokenResult->accessToken,
        'token_type'=>'Bearer',
        'expires_at'=>Carbon::parse($tokenResult->token->expires_at)
                        ->toDateTimeString()
    ]);
}

此操作成功,但是,当我使用相同的不记名令牌撤销用户令牌时,我收到以下异常:

Call to a member function token() on null

这是指下面注销方法的第一行。

public function logout(Request $request){
    $request->user()->token()->revoke();
    return response()->json([
        'message'=> 'Successfully logged out'
        ]);
}

为什么 $request->user() 的输出为空?

为经过身份验证的用户创建令牌,而不是为发出请求的来宾用户创建令牌

$user= auth()->user();
$tokenResult = $user->createToken('Personal Access Token');
$token = $tokenResult->accessToken;

以及撤销时

public function logout(Request $request)
{
  auth()->user()->token()->revoke();
  return response()->json([
      'message'=> 'Successfully logged out'
  ]);
}

希望对您有所帮助