過去24時間のすべてのツイートをユーザーから返そうとしていますが、その方法がわかりません。これは私がこれまでに持っているコードであり、最後の5つのツイートを取得するためのものであり、次のステップの方法がわかりません。 。
Thxマット。
<?php
$username = "MelbournePollen";
$count = 5;
$tweet=json_decode(file_get_contents("http://api.twitter.com/1/statuses/user_timeline/".$username.".json?count=".$count."" ));
for ($i=1; $i <= $count; $i++){
//Assign feed to $feed
$feed = $tweet[($i-1)]->text;
echo date("M \- j",strtotime($tweet[($i-1)]->created_at)). " -- " .$feed. "</br>";
}?>