PHP cURL 授权类型无效/不受支持

PHP cURL grant type invalid / unsupported

我正在尝试使用 php 和 cURL 向 Fitbit oauth 2.0 api 发出请求。我可以获得我的授权码,但无法设法用该代码交换令牌。 Fitbit api 文档说 (https://dev.fitbit.com/docs/oauth2/#access-token-request) 我需要 post 代码、客户端 ID、重定向 URI 和授权类型设置为 'authorization_code'。

但是,我在打印响应时总是收到错误消息。

"errorType":"unsupported_grant_type","message":"The authorization grant_type is not supported. Visit https://dev.fitbit.com/docs/oauth2 for more information on the Fitbit Web API authorization process."}],"success":false}

对于我的一生,我无法弄清楚下面的代码做错了什么。有什么建议么?

$code = $_GET['code'];
$url = 'https://api.fitbit.com/oauth2/token';

$curl = curl_init($url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, array(
 'code=' . $code . '&' .
 'client_id=' . $oauth2_client_id . '&' .
 'redirect_uri=' . $oauth2_redirect . '&' .
 'grant_type=authorization_code'
                                            )
  );

curl_setopt($curl, CURLOPT_HTTPHEADER, array(
    'Authorization: Basic '. base64_encode($oauth2_client_id.':'.$oauth2_secret),
    'Content-Type: application/x-www-form-urlencoded'
));
$response = curl_exec($curl);
print_r($response);

您将 POST 个参数连接成一个字符串,然后将其包含在一个数组中,但它们应该单独显示;可以按如下方式完成:

curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query(array(
 'code' => $code,
 'client_id' => $oauth2_client_id,
 'redirect_uri' => $oauth2_redirect,
 'grant_type' => 'authorization_code'
)));

参见:curl POST format for CURLOPT_POSTFIELDS