我已经创建了一个POST请求,用于从Google Plus中提取特定网址的共享计数,但无法获得任何返回的计数值。
我是否还有很长的路要走,或者是否有更简单的方法来检索这些数据,例如Facebook和Twitter提供的URL将您传递给想要检索共享计数的URL并返回结果以JSON格式!?
GOOGLE_API_KEY
id我从Google的开发者控制台Google+ API
获得的密钥的已定义变量。
$vRequest = '[{"method":"pos.plusones.get",
"id":"p",
"params":{
"nolog":true,
"id":"http://www.google.com",
"source":"widget",
"userId":"@viewer",
"groupId":"@self"
},
"jsonrpc":"2.0",
"key":"p",
"apiVersion":"v1"}]';
$vUrl = "https://clients6.google.com/rpc?key=".GOOGLE_API_KEY;
$vOptions = array(
'http' => array(
'header' => "Content-type: application/json\r\n",
'method' => 'POST',
'content' => $vRequest,
),
);
$vContext = stream_context_create($vOptions);
$vResponse = json_decode(@file_get_contents($vUrl, false, $vContext));
我得到的JSON回复是:
array(1) {
[0]=> object(stdClass)#1 (2) {
["error"]=> object(stdClass)#2 (3) {
["code"]=> int(403)
["message"]=> string(143) "Access Not Configured. The API (+1 API) is not enabled for your project. Please use the Google Developers Console to update your configuration."
["data"]=> array(1) {
[0]=> object(stdClass)#3 (4) {
["domain"]=> string(11) "usageLimits"
["reason"]=> string(19) "accessNotConfigured"
["message"]=> string(143) "Access Not Configured. The API (+1 API) is not enabled for your project. Please use the Google Developers Console to update your configuration."
["extendedHelp"]=> string(37) "https://console.developers.google.com"
}
}
}
["id"]=> string(1) "p"
}
}
现在我已经检查了Google的API控制台,Google+ API
和Google+ Domains API
都已启用,不确定我还缺少什么。
答案 0 :(得分:3)
这是Google尚未向公众提供的私有API。您的应用程序未列入白名单以使用它。有一个open feature request用于获取网址的+1计数。
答案 1 :(得分:3)
原来我上面使用的代码不再适用,Google在2013年做了一项更改以阻止它被使用,我现在使用的代码来获得大致的分享数量。
$vHtml = @file_get_contents( "https://plusone.google.com/_/+1/fastbutton?url=".urlencode("http://www.google.com"));
$vDoc = new DOMDocument();
@$vDoc->loadHTML($vHtml);
$vCounter = $vDoc->getElementById('aggregateCount');
echo $vCounter->nodeValue;
在发布此消息时,无法通过Google Plus获取Google Plus的份额,因为谷歌尚未通过任何API提供此数据。