gpt4 book ai didi

php - 我收到此错误批准_提示 : 'auto' ' is not valid 的无效参数值

转载 作者:行者123 更新时间:2023-12-04 11:37:16 28 4
gpt4 key购买 nike

这是我得到的错误

400. That’s an error.

Error: invalid_request

Invalid parameter value for approval_prompt: 'auto'' is not valid

请求详细信息
response_type=code
access_type=offline
client_id=xyz-
xyx.apps.googleusercontent.com
redirect_uri=http://localhost/xyz/init/googleCallBack.php
state=scope=https://www.googleapis.com/auth/plus.me
approval_prompt=auto'

这是谷歌登录的配置
$gClient= new Google_Client();
$gClient->setAuthConfig('init/client_secret.json');

$gClient->setApprovalPrompt('consent');
$gClient->setApplicationName('abc');
$gClient->setAccessType('offline');
$gClient>setRedirectUri('http://localhost/xyz/init/googleCallBack.php';
$gClient->setScopes(Google_Service_Plus::PLUS_ME);

我尝试设置了 Approval_prompt 或同时提示两者,但如果我不设置这两个,则它不起作用,我仍然得到无效参数“prompt=auto”

最佳答案

official web中的错误.你需要设置:

$gClient = new Google_Client();
$gClient->setPrompt('consent');
通过文档中的合并拉取请求 https://github.com/googleapis/google-api-php-client/pull/1796

关于php - 我收到此错误批准_提示 : 'auto' ' is not valid 的无效参数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47751029/

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