我试图在我的 php 页面中显示我的帐户的关注者数量,并且由于某种原因,当我尝试使用https://api.instagram.com/v1/users/ {$userid}/follows?access_token= {$accessToken} fetchData 行,我没有得到任何信息。
<?php
$userinfo = fetchData("https://api.instagram.com/v1/users/{$userid}/follows?access_token={$accessToken}");
$userinfo = json_decode($userinfo);
foreach($userinfo->data as $profile) {
$followers = $profile->counts->follow_by;
echo "Followed by: ".$followers;
}
?>
但是,如果我将相同的代码与不同的端点命令一起使用并调用不同的数据,则效果很好(如下所示)
<?php
$userinfo = fetchData("https://api.instagram.com/v1/users/self/feed?access_token={$accessToken}");
$userinfo = json_decode($userinfo);
foreach($userinfo->data as $profile) {
$followers = $profile->likes->count;
echo "Followed by: ".$followers;
}
?>
知道我可能做错了什么吗?
谢谢