以下php代码对我来说无法获取访问令牌 在客户端ID和密钥中,我已经用我的真实客户端ID和密钥替换。
<?php
$client_id = 'MY CLIENT ID';
$client_secret = 'MY CLIENT SECRET';
$redirect_uri = 'http://localhost/instagram/demo.php';
$scope = 'basic+likes+comments+relationships';
$url = "https://api.instagram.com/oauth/authorize?client_id=$client_id&redirect_uri=$redirect_uri&scope=$scope&response_type=code";
if(!isset($_GET['code']))
{
echo '<a href="'.$url.'">Login With Instagram</a>';
}
else
{
$code = $_GET['code'];
$apiData = array(
'client_id' => $client_id,
'client_secret' => $client_secret,
'grant_type' => 'authorization_code',
'redirect_uri' => $redirect_uri,
'code' => $code
);
$apiHost = 'https://api.instagram.com/oauth/access_token';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $apiHost);
curl_setopt($ch, CURLOPT_POST, count($apiData));
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($apiData));
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept: application/json'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$jsonData = curl_exec($ch);
curl_close($ch);
var_dump($jsonData);
$user = @json_decode($jsonData);
echo '<pre>';
print_r($user);
exit;
}
?>
上面的代码总是返回false ..我无法弄清楚为什么这不起作用。
有人调试此代码并告诉我代码中的问题是什么?
答案 0 :(得分:2)
因为它已经是https所以你需要把它放在你的代码上
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch,CURLOPT_SSL_VERIFYHOST, false);
这不是关于你的重定向uri是在本地还是没有。这是因为你的卷曲选项中没有设置SSL_VERIFYPEER
答案 1 :(得分:0)
您的代码存在一些问题。对于一个,似乎你的redirect_uri是localhost。显然localhost到Instagram是他们自己的服务器。您需要提供FQDN /世界可访问的URL。
同样来自http://php.net/manual/en/function.curl-setopt.php代码
curl_setopt($ch, CURLOPT_POST, count($apiData));
应该简单
curl_setopt($ch, CURLOPT_POST, 1);
答案 2 :(得分:0)
您的代码是正确的,但您需要更改
$redirect_uri = 'your site addres (not localhost)';
示例:
$client_id = 'YOUR_CLIENT_ID';
$client_secret = 'YOUR CLIENT SECRET';
$redirect_uri = 'http://www.YOUR_SERVER.com/instagram/demo.php';
$scope = 'basic+likes+comments+relationships';
如果您使用此更改执行此脚本,则可以获得此结果。
stdClass Object
(
[access_token] => 'your_ID'.xxxxxxx.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
[user] => stdClass Object
(
[username] => 'your username'
[bio] =>
[website] =>
[profile_picture] => 'your url picture profile'
[full_name] =>
[id] => 'your_ID'
)
)