0

オーソライズを通じて最初の Strava oAuth コードを受け取ることはできますか? Strava ページのプロセスで、https://developers.strava.com/docs/authentication/ で説明されているトークン交換プロセスに苦労しています

以下のコードは、

Sorry, this one stays red.
The page you’re looking for doesn’t exist, but you’re not at a dead end. 
Here are a few options:

Be sure you have the right url and try again
Sign up or log in at strava.com
See what the community’s been up to at Strava Stories
Search for a particular activity or club
Get a little help from Strava Support

私は Strava API にまったく慣れていませんが、結果の URL をブラウザーに直接貼り付けても、同じページ応答が返されます。

$url = "https://www.strava.com/oauth/token?client_id=XXXXX&client_secret=XXXXXXXXXXXXXXXXXXXXXXXX&code=".$code."&grant_type=authorization_code";

echo "<br />".$url;

$cURL = curl_init();

curl_setopt($cURL, CURLOPT_URL, $url);
curl_setopt($cURL, CURLOPT_HTTPGET, true);
curl_setopt($cURL, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Accept: application/json'
));

$result = curl_exec($cURL);

curl_close($cURL);



print_r($result);

?>

この件についてご支援いただきありがとうございます。

4

1 に答える 1