Hi folks,
Is possible invoke twitter search api (statuses/user_timeline) and make authenticated calls and extend limit to 350 request?
Anyone got some example? Im using PHP (its a script, not web application)
Theres my code:
<?php
$url = "https://api.twitter.com/1/statuses/user_timeline.json?since_id=".$last_id ."&page=" . $page . "&count=200&screen_name=". $user ;
$twitter = file_get_contents($uri);
$fede = json_decode($twitter,true);
$max = count($fede);
for ($i=0;$i<$max;$i++)
{
//blabla
}
?>
Regards,
Federico.