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 use the Facebook API on my website to allow users to comment on different pages.

This is how to get the comments count for a specific page:

<fb:comments-count href='LINK_TO_PAGE'></fb:comments-count>

I want to store this value into a MySQL database, allowing users to sort by most Facebook comments. It would be most efficient if i could store this value, only when a person makes a new comment. How can I do this? (Haven't found anything useful in FB docs yet...)

share|improve this question

2 Answers

up vote 1 down vote accepted

Facebook provide this, You can use FQL Query and get data about post from FQL Table stream.

FQL Query

FQL Table stream

Update :

This code grab data from a post in http://www.facebook.com/facebook

You need user's access token to run FQL Query.

$post_id= "20531316728_10150867335071729";
$access_token= YOUR_ACCESS_TOKEN;

$query= "SELECT post_id, message, comments FROM stream 
    WHERE post_id= '" . $post_id . "'";
// Run fql query ( Output: XML )
$fql_query_url = 'https://api.facebook.com/method/fql.query?query=' . urlencode($query) . '&access_token=' . $access_token

$ch= curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $fql_query_url);
$curl_data= curl_exec($ch);
curl_close($ch);

$data= simplexml_load_string($curl_data);
echo "<pre>";
print_r($data);
echo "</pre>";
exit;
share|improve this answer
Looks promising. Lots of reading though, can you provide an example especially for collecting comment count? – 2by Feb 19 '12 at 22:16

If you want to know how many comments exist you should be able to do it from the server using php, you can see more about it in this thread: http://facebook.stackoverflow.com/questions/4791951/retrieve-facebook-post-comments-using-graph-api

If you want to do check the count when ever a user adds a new comment then you'll need to use the facebook javascript sdk to subscribe to the event, something like:

FB.Event.subscribe("comment.create",
    function(response) {
       // make ajax request to your server to update the count
    }
);

You can read more about this here: http://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

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.