Fitbit oAuth使用PHP cURL - 请求令牌返回空白屏幕

时间:2014-01-27 14:47:38

标签: php curl oauth fitbit

我正在尝试使用Fitbit API向“请求令牌”方法发出cURL请求。问题是除了空白屏幕外没有显示任何内容。但是,这个过程假设给我一个“访问令牌”,我可以用它来生成登录URL来验证用户身份并授予我的应用访问权限。

我知道有oAuth php类,但我的服务器不支持oAuth,所以只能使用cURL。请帮忙!非常感谢提前。

<?php
define('FITBIT_KEY', '<consumer key from fitbit website>');
define('FITBIT_SECRET', '<consumer secret from fitbit website>');

function buildBaseString($baseURI, $method, $params)
{
    $r = array(); 
    ksort($params); 
    foreach($params as $key=>$value){
        $r[] = "$key=" . rawurlencode($value); 
    }            

    return $method."&" . rawurlencode($baseURI) . '&' . rawurlencode(implode('&', $r)); //return complete base string
}

function buildAuthorizationHeader($oauth)
{
    $r = 'Authorization: OAuth ';
    $values = array();
    foreach($oauth as $key=>$value)
        $values[] = "$key=\"" . rawurlencode($value) . "\""; 

    $r .= implode(', ', $values); 
    return $r; 
}

$url = "http://api.fitbit.com/oauth/request_token";

$oauth = array( 'oauth_consumer_key' => FITBIT_KEY,
                'oauth_consumer_secret' => FITBIT_SECRET,
                'oauth_nonce' => time(),
                'oauth_signature_method' => 'HMAC-SHA1',
                'oauth_timestamp' => time(),
                'oauth_version' => '1.0',
                'oauth_callback' => 'http://h1.servy.net/zerocuisine/index.php');
$base_info = buildBaseString($url, 'GET', $oauth);
$composite_key = rawurlencode(FITBIT_SECRET) . '&';
$oauth_signature = base64_encode(hash_hmac('sha1', $base_info, $composite_key, true));
$oauth['oauth_signature'] = $oauth_signature;

$header = array(buildAuthorizationHeader($oauth), 'Expect:');
$options = array( CURLOPT_HTTPHEADER => $header,
                  CURLOPT_HEADER => false,
                  CURLOPT_URL => $url,
                  CURLOPT_RETURNTRANSFER => true,
                  CURLOPT_SSL_VERIFYPEER => false);

$feed = curl_init();
curl_setopt_array($feed, $options);
$json = curl_exec($feed);
curl_close($feed);

$fitbit_data = json_decode($json);

echo '<pre>'.print_r($fitbit_data,true).'</pre>'; ?>

1 个答案:

答案 0 :(得分:0)

这里有两个问题导致空白屏幕。您在$ url中使用了 http 而不是 https 。 fitbit令牌请求需要 https 。您还在一个不是json数组的字符串上运行json_decode。 $ json中的数据是来自http body body的字符串。

这是我的详细说明,以使其在下面完全正常工作。

而不是:

$url = "http://api.fitbit.com/oauth/request_token";

使用:

$url = "https://api.fitbit.com/oauth/request_token";

同样删除:

$fitbit_data = json_decode($json);

变化:

echo '<pre>'.print_r($json,true).'</pre>'; ?>

要:

echo '<pre>'. $json .'</pre>'; ?>

这将使您成功回复:

<pre>oauth_token=93bf6ded129fcfa2b687ce6e625477af&oauth_token_secret=c9cc547ca6dd484f73763e23b0987121&oauth_callback_confirmed=true</pre>

显示在您的浏览器中。

P.S。确保将其重制为Oauth 2.0。 OAuth 1.0a支持将于2016年4月12日从Fitbit Web API中删除。