gpt4 book ai didi

php - Laravel 5.8 护照 "resulted in a ` 401 未经授权`"

转载 作者:行者123 更新时间:2023-12-05 07:04:27 26 4
gpt4 key购买 nike

我的 laravel 5.8 项目有问题..

我想在 Guzzle 中使用护照进行注册并获取 token ,但是当我发布新记录以获取 token 时,出现错误提示

"`POST http://femlife.test/oauth/token` resulted in a `401 Unauthorized` response:
{"error":"invalid_credentials","error_description":"The user credentials were incorrect.","message":"The user credential (truncated...)"

这是我的代码:

$http = 新客户;

    $response = $http->post('http://femlife.test/oauth/token', [
'form_params' => [
'grant_type' => 'password',
'client_id' => 2,
'client_secret' => 'gpnQCoxmAxeiW8srk50j5onLiwvRs3dc8aiID3S3',
'username' => $request->name,
'password' => $request->password,
'scope' => '',
'code' => 200,
'redirect_uri' => 'http://localhost'
],
]);

return response(['data'=>json_decode((string) $response->getBody(), true)]);

拜托,我做错了什么?我看到一些建议,我必须将服务器和客户端实例分开,因为现在,我正在使用一个 XAMPP 实例..

最佳答案

似乎在这一行中:

'username' => $request->name,

您可能为用户名设置了错误的值。确保您的用户名字段名称正确。

关于php - Laravel 5.8 护照 "resulted in a ` 401 未经授权`",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62929515/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com