在使用Laravel Passport 过程中,请求 oauth/token 时遇到如下错误:
{ "error": "unsupported_grant_type", "message": "The authorization grant type is not supported by the authorization server.", "hint": "Check the `grant_type` parameter" }
其实这个错误写的非常详细了,就是 grant_type 错误,解决方法也写上了,就是检查你的 grant_type 配置。
官方文档的示例代码:
$http = new GuzzleHttpClient; $response = $http->post('http://your-app.com/oauth/token', [ 'form_params' => [ 'grant_type' => 'password', 'client_id' => 'client-id', 'client_secret' => 'client-secret', 'username' => 'taylor@laravel.com', 'password' => 'my-password', 'scope' => '', ], ]); return json_decode((string) $response->getBody(), true);
请注意上面的 grant_type,如果没写这个参数或者参数的值不正确,那么就会报unsupported_grant_type,一般我们开发,这个位置的值应该是 password 或者 client_credentials。
声明:本文为原创文章,版权归主机之家测评所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 宝塔面板部署 Laravel 提示:The Process class relies on proc_open, which is not available on your PHP installation.07/06
- ♥ Laravel Passport 提示 Class 'AppProvidersPassport' not found 错误的解决办法07/07
- ♥ Laravel 提示 Warning: No such file or directory in D:WWWXXXvendorcomposerautoload_real.php 错误07/06
- ♥ Laravel 提示 The GET method is not supported for this route. Supported methods: POST.错误的解决办法07/07
- ♥ Excel 快速计算排名的两种方式:相同成绩占用名次及相同成绩不占用名次08/29
- ♥ 八个稳字四个平字围成一圈是什么成语?08/25