我想在Twitter页面显示关注者的数量。
我正在使用以下代码,但我一直收到错误“注意:尝试获取非对象的属性”在echo $tweet->followers_count;
行上我已经尝试了$tweetsshow
上的var_dump而followers_count
是所示。
$tweetsshow = $connection->get("https://api.twitter.com/1.1/users/show.json?screen_name=".$twitteruser);
foreach($tweetsshow as $tweet)
{
echo $tweet->followers_count;
}