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've integrated fb:comments using the href parameter, but I am now stuck in a situation where I need to retrieve the comment count without fb:comment-count.

I normally use an FQL query such as below...

$result = $facebook->api(array(
    'query' => 'SELECT post_id FROM comment WHERE xid = "' . $xid . '"', 
    'method' => 'fql.query'));

$comment_count = count($result);

However, there is no href column present in the comment table. Is there another way to do this? I have tried seeing if xid and href are interchangeable... no luck there. I'm also finding that fb:comments plugins created with xid id's are breaking a lot on me (see http://65beta.us/fb/fb1.php ).

Any advice would be greatly appreciated. Thanks!

share|improve this question

1 Answer

up vote 2 down vote accepted

You can easily reach comment and like counts like this: http://graph.facebook.com/?ids=http://65beta.us/fb/fb1.php

share|improve this answer
Fantastic. Thank you! – maskedbacon Aug 26 '11 at 19:32

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.