Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question

1 Answer

$fql = urlencode(
  "SELECT post_fbid, fromid, object_id, text, time FROM comment WHERE object_id IN   (SELECT comments_fbid    FROM link_stat    WHERE url ='http://didong.net/tru-than.html')"
);

// Run fql query                                                                                    
$fql_query_url = 'https://graph.facebook.com/'.
  '/fql?q='.$fql.
  '&'.$access_token;
$fql_query_result = file_get_contents($fql_query_url);
$fql_query_obj = json_decode($fql_query_result, true);

//display results of fql query                                                                      
echo '<pre>';
print_r("query results:\n\n");
print_r($fql_query_obj);
print_r('Rows: '.count($fql_query_obj['data']));
echo '</pre>';

Live demo:

http://plooza.com/fql/fql_comments.php

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.