0

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

但是,当我打印响应时,我不断收到错误消息。

"errorType":"unsupported_grant_type","message":"不支持授权 grant_type。有关 Fitbit Web API 授权过程的更多信息,请访问https://dev.fitbit.com/docs/oauth2 。"}],"成功”:假}

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

$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);
4

1 回答 1

5

您将 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'
)));

请参阅:CURLOPT_POSTFIELDS 的 curl POST 格式

于 2016-05-28T07:46:23.333 回答