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
facebook facebook-graph-api review
user3587846
source share