Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook "Reviews" Tab Data -- Where is it stored in Graph API and how to access it?

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=149530265092626).

I've figured out that all data in a Facebook profile can be retrieved as JSON using the Graph API but I'm totally stumped about the data populated on the "Reviews" tab. It appears to be it's own Application separate from the Facebook core and this is probably why I'm lost.

Any leads/tips/experts out there? Here are some of the links I've been searching for Help.

developers.facebook.com/docs/api
developers.facebook.com/docs/reference/api/
developers.facebook.com/docs/reference/api/application/

My overall goal is to take this data into Yahoo! Pipes and then combine it with data from a Google Form to create an RSS feed to be output to a webpage I'm building.

Your thoughts and help would be GREATLY appreciated!

Ryan

like image 380
Ryan Avatar asked Oct 13 '22 19:10

Ryan


1 Answers

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

like image 138
Daniel Hursan Avatar answered Jan 24 '23 12:01

Daniel Hursan