私は PHP で fitbit api を使用しています。現時点では単純に json データをエコーしようとしていますが、受信している JSON データは無効な要求エラーです。ここまでの作業の流れです。最初にhttp://www.plas.nyc/TEST/fitbit.phpにアクセスします。これは以下のコードで、ログイン ボタンをクリックすると fitbit サイトにリダイレクトされ、URL にコードが追加された状態で自分のサイトに戻ります: http ://www.plas.nyc/TEST/fitbit.php?code=cc8462bcde166d20517fc099b8ea9c994738ac59これは素晴らしいですが、悪い部分は私のvar_dumpで受信されているJSONです私が要求した適切なデータの代わりにDOMにこれを発射するエラーです:
string(210) "{"errors":[{"errorType":"invalid_request","message":"Authorization header required. Visit https://dev.fitbit.com/docs/oauth2 for more information on the Fitbit Web API authorization process."}],"success":false}"
現時点では何が問題なのかわかりません。以下は、これを行うために書かれたコードです。
<?php
/*--------------------- Fitbit API Keys ---------------------*/
// CONSTANTS
define("user_id",'X2222X'); // renamed to X2222X for this post
define("client_id",'X1111X'); //renamed to X1111X for this post.
define("response_type",'code');
define("scope", 'activity nutrition profile settings sleep social weight');
define("redirect_uri", 'http://www.plas.nyc/TEST/fitbit.php');
if($_GET['code']){
echo '<h1>success</h1>';
//loggedin
$code = $_GET['code'];
$url = "https://api.fitbit.com/oauth2/token";
$access_token_setttings = array(
'code' => $code,
'grant_type' => "authorization_code",
'client_id' => client_id,
'redirect_uri' => redirect_uri
);
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $access_token_setttings);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);// look into it more
$result = curl_exec($curl);
curl_close();
$results = json_decode($result, true);
var_dump($result);
} else { ?>
<!DOCTYPE html>
<html>
<head>
<title>FITBIT API -|- PLAS.NYC</title>
</head>
<body>
<a href="https://www.fitbit.com/oauth2/authorize?response_type=<?php echo response_type; ?>&client_id=<?php echo client_id; ?>&scope=<?php echo scope; ?>">LOGIN</a>
</body>
</html>
<?php
}
?>