主机之家测评主机之家测评  2020-07-07 05:15 主机之家测评 隐藏边栏 |   抢沙发  563 
文章评分 0 次,平均分 0.0

在使用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。

声明:本文为原创文章,版权归所有,欢迎分享本文,转载请保留出处!

发表评论

扫一扫二维码分享