Facebook “Reviews” Tab Data — Where is it stored in Graph API and how to access it?

后端 未结 2 1666
小蘑菇
小蘑菇 2020-12-17 03:09

I\'m totally stumped here. I\'m trying to get access to the data that appears under the reviews tab in the Facebook Page http://facebook.com/freemanfoxx (Page ID=14953026509

相关标签:
2条回答
  • 2020-12-17 03:44

    Let's say your reviews tab on the facebook page is: http://www.facebook.com/easyinspection?sk=app_6261817190.

    6261817190 is the application id (not page id), and that is what you will be using next. You can get all reviews by a request to:

    http://graph.facebook.com/6261817190/reviews. If you do not want to go page by page, retrieving 25 reviews at a time (take a look at next page url), you can get it all in a single request, like this:

    http://graph.facebook.com/6261817190/reviews?limit=100000000&offset=0

    0 讨论(0)
  • 2020-12-17 04:07

    There is no API for this data. Your only chance will be a web page crawl ov your reviews and grab the content from there.

    0 讨论(0)
提交回复
热议问题