我正在使用此代码来吸引粉丝数!
<?php
$api_key = '------';
$user_id = '------';
$data = @file_get_contents("https://api.instagram.com/v1/users/$user_id/?client_id=$api_key");
$data = json_decode($data, true);
echo '<pre/>';
print_r($data);
echo $data['data']['counts']['followed_by'];
?>
答案 0 :(得分:2)
它失败了,因为您无法使用客户端ID访问API的该功能。
您需要通过将用户发送到授权网址来获得Access Token
。请在Instagram Docs。
之后,您使用之前的/users
向Access Token
发出请求。