你应该如何检索谷歌+ +1计数的网址?

时间:2014-04-05 15:47:55

标签: google-api google-plus google-plus-one

使用rpc方法:

$url = 'http://www.google.com';
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "https://clients6.google.com/rpc");
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, '[{"method":"pos.plusones.get","id":"p","params":{"nolog":true,"id":"' . $url . '","source":"widget","userId":"@viewer","groupId":"@self"},"jsonrpc":"2.0","key":"p","apiVersion":"v1"}]');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-type: application/json'));
$curl_results = curl_exec ($curl);
curl_close ($curl);
$json = json_decode($curl_results, true);
echo intval( $json[0]['result']['metadata']['globalCounts']['count'] );

或使用+1按钮报废方法?

$url = 'http://www.google.com';
$result = file_get_contents('https://plusone.google.com/_/+1/fastbutton?url='.urlencode($url));
preg_match( '/window\.__SSR = {c: ([\d]+)/', $result, $matches );

echo (isset($matches[0])) ? (int) str_replace('window.__SSR = {c:', '', $matches[0]) : 0;

对差异或可能的副作用进行解释会很棒。

注意:两种方法都适用于2014/04/05。

1 个答案:

答案 0 :(得分:1)

鉴于谷歌既没有官方/支持,我也可以使用第一种方法,并在失败的情况下回退到第二种方法。第二种方法更容易出错,因为您正在解析可以随时更改的源代码(而不是调用您不应该调用的服务更好,但显然没有其他方法选项)。