Facebook API for Search

Has anyone seen a complete example of how to pull out facebook reviews using the api chart.

According to the docs: To get this data, a page access token is required.

I have a code that asks the user to log in already and receives an authentication token, which I can use to post the message in my facebook feed. Is there another step I must take to read their reviews / ratings?

Here is a sample code to send to their channel / page.

response = Curl.post("https://graph.facebook.com/#{page_id}/feed", { :message => message, :access_token => auth_token }) 

thanks

+7
facebook facebook-graph-api review
source share
1 answer

If you mean page ratings (other than app reviews!), Then the end point

 GET /{page_id}/ratings 

as described here: https://developers.facebook.com/docs/graph-api/reference/page/ratings To do this, you will need a page access token.

Where I'm a little confused, you mentioned you want to

read their reviews / ratings

In this case, it is something else, because afaik cannot currently request user page ratings via the Graph API or FQL. You can only request application reviews through FQL (see https://developers.facebook.com/docs/reference/fql/review/ )

+4
source share

All Articles