I tried to load que quantity of likes of a picture, but the Facebook always return none data. what I am doing wrong? I tried using the (https://graph.facebook.com/2063756506389/likes) witch 2063756506389 is the picture ID.
<?php
require "src/facebook.php";
$facebook = new Facebook(array(
'appId' => '117743971608120',
'secret' => '943716006e74d9b9283d4d5d8ab93204',
));
$fql = 'SELECT url, share_count, like_count, comment_count, click_count, total_count
FROM link_stat WHERE url="https://graph.facebook.com/2063756506389"';
$result = $facebook->api(array(
'method' => 'fql.query',
'query' => $fql,
));
print_r($result);
?>