Reputation: 535
Is there any API for getting twitter tweets and retweets count. Please help me
Thanks in advance.
Upvotes: 2
Views: 9815
Reputation: 535
function getTweetCount($url) { $url = urlencode($url); $twitterEndpoint = "http://urls.api.twitter.com/1/urls/count.json?url=%s"; $fileData = file_get_contents(sprintf($twitterEndpoint, $url)); $json = json_decode($fileData, true); unset($fileData); // free memory //print_r($json); return $json['count']; }
Upvotes: 8