Twitter粉丝数量PHP

时间:2015-05-20 12:01:01

标签: php arrays object twitter

我想在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;
}

enter image description here

enter image description here

0 个答案:

没有答案