Per calcolare il numero di tweet che un sito web ha ricevuto in Twitter, utilizza questo codice PHP. Sostituisci www.iltuositoweb.com con l'URL che vuoi:
$url = "www.iltuositoweb.com";
function get_tw_shares($url)
{
$call = "http://cdn.api.twitter.com/1/urls/count.json?url=" . rawurlencode($url);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $call);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);
curl_close($ch);
return json_decode($output);
}
$tw_shares = get_tw_shares($url);
$shares = $tw_shares->count;
echo $shares;