URL'in Facebook'ta Paylaşım Sayısı Getirme (PHP)
Bir URL'in Facebookta kaç kere paylaşıldığını çekmek için aşağıdaki fonksyonu kullanabilirsiniz. Kullanmak için minimum PHP 5 ve PECL json desteği gerekmektedir.
function get_social_count_facebook( $link ) {
$link = urlencode($link);
$data = file_get_contents("http://graph.facebook.com/?id=$link");
$json = json_decode($data, true);
$count = $json["shares"];
return $count ? $count : 0;
}
Kullanım:
echo(get_social_count_facebook("http://www.google.com"));