Hello,
I am going to do a php aplication to obtain the number of followers of a larg list of user. I am going to use this code. Has it got this code limit of requests, 350 request per hour?
$url = ‘http://api.twitter.com/1/users/show.xml?screen_name=’. $username;
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXMLElement($data);
$count = $xml->followers_count;
$count = (float) $count;
$count = number_format($count);
return $count;