gpt4 book ai didi

php - OAuth2 返回 invalid_client 错误

转载 作者:可可西里 更新时间:2023-11-01 13:21:13 27 4
gpt4 key购买 nike

美好的一天,

我在获取访问 token 时遇到问题。我已按照此处的指南进行操作:http://developers.box.com/oauth/并且已经获取了我的 client_idclient_secret,并在应用程序设置(OAuth2 参数)部分设置了 redirect_uri

这是文件 client.php

的代码
<?php
$client_id = 'my_client_id_here'; //removed
$post_url = 'https://www.box.com/api/oauth2/authorize';

include 'includes/header.php';
?>
<div id="content">
<form action="<?php echo $post_url; ?>" type="POST" enctype="application/x-www-form-urlencoded">
<input type="text" name="response_type" value="code">
<input type="text" name="client_id" value="<?php echo $client_id; ?>">
<input type="text" name="state" value="vexhax97td8xf_SomeTemporaryValueForTesting">
<input type="submit">
</form>
<div id="response"></div>
</div>

<?php
include 'includes/footer.php';
?>

这里是文件 something.php 的代码(这是 redirect_uri 所在的位置)

<?php

$client_id = 'my_client_id_here'; //removed
$client_secret = 'my_client_secrect_here'; //removed
$post_url = 'https://www.box.com/api/oauth2/token';

$code = $_GET['code'];

include 'includes/header.php';

$fields_params = array(
"grant_type" => 'authorization_code',
"code" => $code,
"client_id" => $client_id,
"client_secret" => $client_secret
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $post_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields_params);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Accept: application/json'
));

$data = curl_exec($ch);
curl_close($ch);

$json = json_decode($data, true);
var_dump($json);

?>
<div id="content">
<?php
//Nothing fancy, just for displaying passed values
if (isset($_GET))
var_dump($_GET);

if (isset($_POST))
var_dump($_POST);
?>
</div>

<?php
include 'includes/footer.php';
?>

...现在发生的事情是,

1.) 在第一步 (client.php) 中,有一个带有提交按钮的表单。

2.) 在我点击提交按钮后,我被重定向到带有“授权”按钮的 Box 登录页面。

3.) 输入登录详细信息并允许授予对我的应用程序的访问权限后。我现在被重定向到我在应用程序设置 (something.php) 中设置的 redirect_uri,在此文件中,它将执行 curl post 以获得访问权限 token ,但我卡在了这部分,curl 结果返回错误:

array(2) { ["error"]=> string(14) "invalid_client" ["error_description"]=> string(34) "The client credentials are invalid" }

我确定我已经正确输入了我从应用程序设置中获得的 client_idclient_secretredirect_uri 的 url 也启用了 SSL。

有什么解决方案,为什么会这样?

感谢您的帮助。

最佳答案

问题出在您设置的 cURL header something.php 中。删除 Content-Type header 。事实上,您根本无法设置 header - cURL 将发送正确编码的参数,而 Box 将默认返回 JSON 数据。

curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Accept: application/json'
));

关于php - OAuth2 返回 invalid_client 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20414945/

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