i have a sample code:
require 'facebook.php';
$facebook = new Facebook(array(
'appId' => xxx,
'secret' => xxx,
'cookie' => true,
));
$my_url = 'http://didong.net/tru-than.html';
$fpl = "
SELECT post_fbid, fromid, object_id, text, time FROM comment WHERE object_id IN
(SELECT comments_fbid FROM link_stat WHERE url ='".$my_url."')
";
$params = array(
'method' => 'fql.query',
'query' => $fpl,
);
//Run Query
$result = $facebook->api($params);
print_r($result);
=> result is: array()
But when i browser link https://graph.facebook.com/comments/?ids=http://didong.net/tru-than.html => result have an comments
=> How to run fql facebook query to get comments to this link ?