I have to get reviews from Google map API. details are on this page.
https://developers.google.com/places/documentation/details#PlaceDetailsResults
the details will fetch from this page:-
My problem is I can't find what is reference in request. and how I find this parameter value from my Google plus page.
A more recent way to do this:
https://maps.googleapis.com/maps/api/place/details/json?placeid={place_id}&key={api_key}
Response:
Reviews are limited to the 5 latest.
For fetching a google review you need reference id for the place.In order to get this reference key you can use google places search api request.
https://maps.googleapis.com/maps/api/place/textsearch/xml?query=restaurants+in+bangalore&sensor=true&key=AddYourOwnKeyHere
Its response will have reference id which you can use in your request.
I made it through PHP, Now call like this URL and you get original result with reference key.
Then parse it like:
Hope it will help you
***Note: location=38.908310,-104.784035 this var is not auto you must have it.