1
我正在使用Laravel的Passport庫並使用密碼授予類型來生成訪問令牌。令牌過期時間已被設置爲10分鐘。MethodNotAllowedHttpException當訪問令牌在Laravel Passport中過期(密碼授予類型)
現在我的問題是,當令牌被過期用戶得到 MethodNotAllowedHttpException
,而不是無效的訪問令牌響應。
請幫忙,這裏是我的API路線代碼。
Route::group(['middleware' => ['auth:api']], function() {
Route::get('see_your_progress/{family_id}', 'Api\v1\[email protected]');
});
這裏是我得到我的郵遞員API調用,
所預期的那樣表現出JSON迴應說 {error:"Unauthenticated"}
。
如果您需要更多說明,請讓我知道。
感謝