I'm tring do get the total number of sharing a link on facebook with the function "file_get_contents".
This is my code:
$url = x;
$data = file_get_contents('http://graph.facebook.com/?id=".$url');
$obj = json_decode($data, true);
$like_no = intval($obj->{'shares'});
echo $like_no;
I tried this and it doesn't work. But file_get_contents is enabled on my server so i don't find the solution... If you can help me! Thanks in advance :)