0

Assume I have a website with Facebook comments (social plugin) like this.

Is it possible to get the comments from this site using the FQL or "comments.get" method of the REST API (note the responsible FB app is not mine)? It might be possible somehow, since the comments are displayed on the web arbitrarily...

Thank you for any suggestions!

Chris Frederick
  • 5,482
  • 3
  • 36
  • 44
joshis
  • 347
  • 4
  • 9

2 Answers2

0

There is Graph API call for that:

https://graph.facebook.com/comments?ids=http://your.domain/your_url.html
KrzysDan
  • 1,146
  • 1
  • 8
  • 10
0

Yes, you can get the comments with the comments.get method. You'll need to use the Unique ID every of your Comments-Widgets has as the first parameter (xid).

anroesti
  • 11,053
  • 3
  • 22
  • 33
  • Thank you for the answer, Andre, however, it doesn't work for me, the FB app that manages that social plugin is not mine (I edited the question to mention this). https://api.facebook.com/method/comments.get?xid=98075 is not enough... – joshis Feb 05 '11 at 21:35
  • Yep, but I don't know any other way to obtain it than to send the user to the auth - which is not what happens on the web, the comments are just there... :( Possibly this is the REST API thing... – joshis Feb 05 '11 at 21:40