$notweets = 5;
$search = '#potato';
$connection = new TwitterOAuth($consumerkey, $consumersecret, $accesstoken, $accesstokensecret);
$search = str_replace("#", "%23", $search);
$tweets = $connection->get("https://api.twitter.com/1.1/search/tweets.json?q=".$search."&count=".$notweets);
foreach($tweets as $status){
echo $status['text'];
}
再次您好 Stackoverflow!
在这个例子中,我使用 TwitterOAuth 在 Twitter 上搜索一些主题标签#potato
。当我显示$tweets
它确实返回了最新的推文,但是当我 foreach 并想要显示它们时,它说我在数组中有一个未定义的索引,这意味着它 can't find $status['text']
,尽管我认为路径是正确的。
你们能帮帮我吗?
提前致谢!