5

I'm trying to get all the comments of a url that was added to facebook. is this possible?

daily-learner
  • 617
  • 1
  • 8
  • 17

1 Answers1

13

It is possible to get all comments (from Comments social plugin) associated with URL by issuing next request to Graph API:

http://graph.facebook.com/comments?id=URL

For example some article on TechCrunch:

http://graph.facebook.com/comments?id=http%3A%2F%2Ftechcrunch.com%2F2012%2F02%2F27%2Fyahoo-stabs-facebook-in-the-back-says-pay-for-its-patents-or-get-sued%2F
Juicy Scripter
  • 25,778
  • 6
  • 72
  • 93
  • 1
    Looks like this doesn't work anymore. Response ssays: `(#100) Tried accessing nonexisting field (comments) on node type (URL)` – piotr_cz Jul 28 '17 at 12:58
  • You can see answer here https://stackoverflow.com/a/62490401/304894 – Codler Jun 20 '20 at 20:01