How to create a widget / site module for Google Place "Google User Reviews"

Is it possible to build a widget / module that will be posted on a website that will allow a site visitor to publish a review in Google Place "Google User Reviews".

If possible, can someone give me some practical steps to achieve it.

+3
source share
1 answer

Do you want an API, yes? As Mike said, I don’t think they are offering (or soon) such an API. However, this does not mean that you cannot sunbathe your customers by leaving reviews on your site.

Two suggestions come to mind, although I am sure that there are other ways to solve this problem.

1) , . , , . , , , ( ) URL, ,

http://maps.google.com/maps/place?hl=en&georestrict=input_srcid:XXXXXXXXXXXXXXXX#pp-reviews (XXX - ).

# pp-review, URL-, . , .

2) You can potentially implement an iframe that contains relevant overview information, although this option will not be universally supported. To get around this, simply include the link in the iframe in case the iframe cannot be displayed:

<iframe width="500" height="150" src="http://maps.google.com/maps/place?hl=en&georestrict=input_srcid:XXXXXXXXXXXXXXXX#pp-reviews" frameborder="1">
click here to <a href="http://maps.google.com/maps/place?hl=en&georestrict=input_srcid:XXXXXXXXXXXXXXXX#pp-reviews">leave a review!</a>.
</iframe>
code>

Hope this helps!

0
source

All Articles