Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other How could I integrate Google reviews into a membership site so I can respond? Reply To: How could I integrate Google reviews into a membership site so I can respond?

#248472
I.m.learning
Participant

Curious to know if using JSON with AJAX would work.

I came across this while looking into options for my own site:

$.ajax(
type:’GET’,
url:”http://example.com/users/feeds/”,
data:”format=json&id=123″,
success:function(feed) {
document.write(feed);
},
dataType:’jsonp’
);