I am not the owner of some page but i want access the pages reviews and ratings,Each access time i am getting empty data set
> http="https://graph.facebook.com/102227700571/tabs/reviews?access_token=fb_oauth"
> content=callAPIInfo(http,fb_oauth)
> content
$data
list()
I saw some of the similar12 question but didnt get my answer,I dont wanna collect page access tokens from the admin of each pages,Is it possible to fetch review and rating.thanks.
EDIT
Finally i find a very detailed answer by ifaour for access pages token by admin and its necessary to take page access token so here is how to get page access token and review and rating
- Go to the Graph API Explorer
- Choose your app from the dropdown menu
- Click "Get Access Token"
- Choose the manage_pages permission (you may need the user_events permission too, not sure)
- Now access the me/accounts connection and copy your page's access_token Click on
- your page's id Add the page's access_token to the GET fields Call
the connection you want (e.g.: PAGE_ID/events)
access_token="xxx" #[what u find above] > content=callAPIInfo(http,access_token) > content $data $data[[1]] $data[[1]]$created_time [1] "2014-04-13T11:37:26+0000" $data[[1]]$reviewer $data[[1]]$reviewer$name [1] "abc" $data[[1]]$reviewer$id [1] "100000579606903" $data[[1]]$rating [1] 4 $data[[1]]$review_text [1] "Enjoy having coffee here...:)"