次のコマンドを使用して、user_timelineから情報を引き出すことができます。
$recentTweets = $connection->get('https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=username&count=1');
for ($i=0; $i<count($recentTweets); $i++){
echo $recentTweets[$i]->text;
};
しかし、Twitterの検索結果では機能しないようです。フォーマットが違うという事実と関係があると思いますか?print_rを使用すると、「stdClass Object」が表示されますが、user_timelineの結果では表示されません。
$cowTweets = $connection->get('https://api.twitter.com/1.1/statuses/search.json?q=cow&count=1');
for ($i=0; $i<count($cowTweets); $i++){
echo $cowTweets[$i]->text;
};
それが助けになるなら、私はAbrahamのTwitterOauthライブラリを使用しています。