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.

Is it possible to get a list of comments, or at least a count of the number of comments that have been left on a website with the Facebook comments widget?

The widget I am using is placed inside an iFrame Facebook application.

Here is the XFBML which is being parsed by the Facebook Javascript API:

<fb:comments xid="fbtest"></fb:comments>

Would the xid parameter have anything to do with it? As far as I can tell, there are no other possible parameters. How would one query the open graph url (http://graph.facebook.com/QUERY) to access this object?

share|improve this question

1 Answer

up vote 3 down vote accepted

You can do this with FQL:

select post_id, text from comment where xid="fbtest"

see comment table

share|improve this answer
Thank you! That worked perfectly. I was so busy looking through all the docs for open graph I didn't even think to check the REST API. – Jordan Sep 20 '10 at 15:46

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.