According to this tutorial, I should post to G+ first to get the count back: I created my own API key for the project, yet I get an error when trying to access the URL in the address bar:
{"error":{"code":-32700,"message":"Parse Error","data":[{"domain":"global","reason":"parseError","message":"Parse Error"}]}}
Javascript:
https://clients6.google.com/rpc?key=AIzaSyDTmz9L0Ed02ECQRnZ_8jxXMNB8msmb_zI
var googleShare = "https://clients6.google.com/rpc?key=AIzaSyDTmz9L0Ed02ECQRnZ_8jxXMNB8msmb_zI";
var postBody = [{
"method": "pos.plusones.get",
"id": "p",
"params": {
"nolog": true,
//change the end of the URI, dpe
"id": "https://triathlonresearch.org/members/quiz/questions/",
"source": "widget",
"userId": "@viewer",
"groupId": "@self"
},
"jsonrpc": "2.0",
"key": "p",
"apiVersion": "v1"
}];
$.post({
data: postBody,
url: googleShare
}).done(function (data) {
console.log(data.metadata.globalCounts.count);
});