Raphael
Raphael

Reputation: 8192

Facebook - How to get the comments of a fb:comment

I need to get the comments posted on a fb:comments widget. Here is what I've tried:

http://graph.facebook.com/comments?id={{ url_of_the_page }} - Returns an empty list

Executing the following FQL

SELECT post_fbid, fromid, object_id, text, time FROM comment WHERE object_id IN (SELECT comments_fbid FROM link_stat WHERE url ={{ page_url }}) - Return an empty response with the fql header

I'm beginning to think that this is not possible. Am I missing something or is this indeed not possible?

Upvotes: 0

Views: 1535

Answers (1)

bkaid
bkaid

Reputation: 52093

That is how you do it. What is the url you are trying? For example, this random Techcrunch article works in the same way as you describe: http://graph.facebook.com/comments?id=http://techcrunch.com/2011/09/20/digg-experiments-with-topic-newsrooms-aggregates-news-by-most-meaningful-stories/

Upvotes: 2

Related Questions