总是收到“消息”:“未经身份验证”。 \- Laravel 护照

新手上路,请多包涵

我这一整天都找到了很多教程。我的设置与那里的所有基本教程完全相同。

目前,我能够访问 http://localhost/oauth/token 并成功返回令牌给我。

之后,我使用 ARC(高级 Rest 客户端)来测试调用我自己的 api。

我已经通过了标题,例如

Authorization: Bearer the_token_here
accept: application/json

从该标题中,我只想访问 laravel /user 提供的默认 API。

但是,我总是得到 { "message": "Unauthenticated." } 的回应

请参阅本教程 https://itsolutionstuff.com/post/laravel-5-how-to-create-api-authentication-using-passport-example.html

我可以按照教程进行登录,但无法通过端点 details 获取数据。它返回响应 { "message": "Unauthenticated." }

我的路线 api.php

 Route::group(['prefix' => 'v1', 'middleware' => 'auth:api'], function(){
    Route::get('/user', function( Request $request ){
        return $request->user();
    });
});

顺便说一句,laravel.log 中没有错误消息,我已设置为调试模式

更新感谢 Mayank 指出的评论

League\\OAuth2\\Server\\Exception\\OAuthServerException: The resource owner or authorization server denied the request. in /.../vendor/league/oauth2-server/src/Exception/OAuthServerException.php:173
Stack trace:
#0 /.../vendor/league/oauth2-server/src/AuthorizationValidators/BearerTokenValidator.php(59): League\\OAuth2\\Server\\Exception\\OAuthServerException::accessDenied('Missing "Author...')
#1 /.../vendor/league/oauth2-server/src/ResourceServer.php(82): League\\OAuth2\\Server\\AuthorizationValidators\\BearerTokenValidator->validateAuthorization(Object(Zend\\Diactoros\\ServerRequest))
#2 /.../vendor/laravel/passport/src/Http/Middleware/CheckClientCredentials.php(46): League\\OAuth2\\Server\\ResourceServer->validateAuthenticatedRequest(Object(Zend\\Diactoros\\ServerRequest))

原文由 Kasnady 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 483
2 个回答

为了获得原因的详细错误消息,您需要转到 CheckClientCredentials 类详细信息如下

public function handle($request, Closure $next, ...$scopes)
{
    $psr = (new DiactorosFactory)->createRequest($request);

    try {
        $psr = $this->server->validateAuthenticatedRequest($psr);
    } catch (OAuthServerException $e) {
        error_log($e->getHint()); // add this line to know the actual error
        throw new AuthenticationException;
    }

    $this->validateScopes($psr, $scopes);

    return $next($request);
}

根据错误信息。在我的问题中。

解决方案是将其添加到根文件夹的 .htaccess (不仅在公用文件夹内)

 # Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

官方文档中也有注释 请参考这里

如果没有上述配置, Authorization 标头将在从任何地方调用应用程序时被忽略。一旦被忽略,内部类将无法检索此标头数据

原文由 Kasnady 发布,翻译遵循 CC BY-SA 4.0 许可协议

如果您尝试了所有方法但似乎没有任何效果,请尝试清除您的配置缓存。我花了两天时间重新安装 passport,学习了 10 亿个教程,创建了测试项目等等,最终意识到我需要清除缓存

php artisan config:cache

原文由 Savlon 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏