Get Reviews of a Facebook page

0

Currently I am developing a website where my boss wants to show the ratings and comments that have been made on the Facebook page

link PAGE / reviews /

Try to do this with PHP using the file_get_contents() function to get the content of the page and then search for Only comments above 3 stars , however do not take on account that Facebook for security from the server detects the browser from which I am accessing and therefore this option does not work for me.

My question is, does Facebook have an Api that can help me ?, I searched the Facebook Developers documentation but I have not found it since there are several.

    
asked by Fernando Ferretiz 13.07.2018 в 20:45
source

1 answer

1

Open Graph API

Facebook gives you its Open Graph API . The part you are interested in is Page Ratings (https://developers.facebook.com/docs/ graph-api / reference / page / ratings)

To start using Open Graph you can refer to your use guide here.

They also have a SDK for PHP And you can see the repo here.

    
answered by 13.07.2018 / 21:43
source