Die API von Twitter bietet die Möglichkeit, die Anzahl der Tweets einer URL auszulesen. Hierzu reicht es die folgende Adresse (http://urls.api.twitter.com/1/urls/count.json?url=http://meineurl) mit entsprechendem GET-Parameter (url) aufzurufen. Als Antwort erhält man ein JSON-Array mit der Tweetzahl.
Mit PHP kann das Ganze wie folgt aussehen:
Code:
function getTweetCount($sURL)
{
$sJSON = file_get_contents("http://urls.api.twitter.com/1/urls/count.json?url=".urlencode($sURL));
$aResult = json_decode($sJSON, true);
return $aResult['count'];
}
{
$sJSON = file_get_contents("http://urls.api.twitter.com/1/urls/count.json?url=".urlencode($sURL));
$aResult = json_decode($sJSON, true);
return $aResult['count'];
}
Anwendungsbeispiel:
echo getTweetCount("http://google.com");
//Ausgabe: 6889
//Ausgabe: 6889
Yeah, this is a good hack to get the number of tweets a url can have, code is short and useful,
But please let me know, whether „I can get a no. of tweets a url can have“ or „no. of tweets in which the URL is mentioned „.. Good tutorials..
Regards,
Zahin Umar Alwa