4

PHP で特定の URL の google plus での共有数を取得したいと考えています。私はそれを行うためにこの関数を見つけました:

function get_shares_google_plus($url) {
  $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);
  print_r($json);
  return intval( $json[0]['result']['metadata']['globalCounts']['count'] );
}

ただし、常に同じメッセージが表示されます: Notice: Undefined index: result in ....

私は を作りprint_r($json)、私は得る: Array ( [0] => Array ( [error] => Array ( [code] => 400 [message] => Invalid Value [data] => Array ( [0] => Array ( [domain] => global [reason] => invalid [message] => Invalid Value ) ) ) [id] => p ).

助言がありますか?

4

3 に答える 3

8

RPC API は決して一般向けではなく、Google は悪用を防ぐために認証を変更しました。したがって、投稿したコードは機能しなくなりました。ただし、はるかに簡単な解決策を見つけました。

更新 (2013 年 1 月 23 日): Google は 2012 年 12 月にこの URL をブロックしたため、この方法はもはや機能しません!
更新 (15.05.2013):メソッドが再び機能します!

<?php
/**
 * Get the numeric, total count of +1s from Google+ users for a given URL.
 * @author          Stephan Schmitz <eyecatchup@gmail.com>
 * @copyright       Copyright (c) 2013 Stephan Schmitz
 * @license         http://eyecatchup.mit-license.org/  MIT License
 * @link            <a href="https://gist.github.com/eyecatchup/8495140">Source</a>.
 * @param   $url    string  The URL to check the +1 count for.
 * @return  intval          The total count of +1s.
 */
function getGplusShares($url) {
    $url = sprintf('https://plusone.google.com/u/0/_/+1/fastbutton?url=%s', urlencode($url));
    preg_match_all('/{c: (.*?),/', file_get_contents($url), $match, PREG_SET_ORDER);
    return (1 === sizeof($match) && 2 === sizeof($match[0])) ? intval($match[0][1]) : 0;
}

更新 (18.01.2014):フォールバック ホストである curl を使用し、いくつかのエラー処理を行う改良版を次に示します (最新バージョンはhttps://gist.github.com/eyecatchup/8495140にあります)。

<?php
/**
 * GetPlusOnesByURL()
 *
 * Get the numeric, total count of +1s from Google+ users for a given URL.
 *
 * Example usage:
 * <code>
 *   $url = 'http://www.facebook.com/';
 *   printf("The URL '%s' received %s +1s from Google+ users.", $url, GetPlusOnesByURL($url));
 * </code>
 *
 * @author          Stephan Schmitz <eyecatchup@gmail.com>
 * @copyright       Copyright (c) 2014 Stephan Schmitz
 * @license         http://eyecatchup.mit-license.org/  MIT License
 * @link            <a href="https://gist.github.com/eyecatchup/8495140">Source</a>.
 * @link            <a href="http://stackoverflow.com/a/13385591/624466">Read more</a>.
 *
 * @param   $url    string  The URL to check the +1 count for.
 * @return  intval          The total count of +1s.
 */
function GetPlusOnesByURL($url) {
    !$url && die('No URL, no results. ;)');

    !filter_var($url, FILTER_VALIDATE_URL) &&
        die(sprintf('PHP said, "%s" is not a valid URL.', $url));

    foreach (array('apis', 'plusone') as $host) {
        $ch = curl_init(sprintf('https://%s.google.com/u/0/_/+1/fastbutton?url=%s',
                                      $host, urlencode($url)));
        curl_setopt_array($ch, array(
            CURLOPT_FOLLOWLOCATION => 1,
            CURLOPT_RETURNTRANSFER => 1,
            CURLOPT_SSL_VERIFYPEER => 0,
            CURLOPT_USERAGENT      => 'Mozilla/5.0 (Windows NT 6.1; WOW64) ' .
                                      'AppleWebKit/537.36 (KHTML, like Gecko) ' .
                                      'Chrome/32.0.1700.72 Safari/537.36' ));
        $response = curl_exec($ch);
        $curlinfo = curl_getinfo($ch);
        curl_close($ch);

        if (200 === $curlinfo['http_code'] && 0 < strlen($response)) { break 1; }
        $response = 0;
    }
    !$response && die("Requests to Google's server fail..?!");

    preg_match_all('/window\.__SSR\s\=\s\{c:\s(\d+?)\./', $response, $match, PREG_SET_ORDER);
    return (1 === sizeof($match) && 2 === sizeof($match[0])) ? intval($match[0][1]) : 0;
}

更新 (2017 年 2 月 11 日): +1 カウントは正式に廃止されました! プロダクト マネージャーの John Nack によるこの Google+ 投稿で発表されたように、Google は最近、Web 共有ボタンから共有カウント (別名 +1 カウント) を削除しました。(彼らは、この動きの目的は、+1 ボタンと共有ボックスの読み込みをより速くすることだと主張しています。)

于 2012-11-14T19:08:36.443 に答える
1

このコードは機能しません。さらに、このカウントを提供する公開 API はありません。

このコードは、+1 ボタンを強化する RPC API を使用しています。この API は公式にサポートされている API ではなく、Google+ プラグインの内部実装以外で使用することを意図していません。

于 2012-09-13T19:18:08.157 に答える
0

ここにある他の投稿にリストされているcURLとAPIの方法は機能しなくなりました。

まだ少なくとも1つの方法がありますが、それは醜く、Googleは明らかにそれをサポートしていません。正規表現を使用して、公式ボタンのJavaScriptソースコードから変数をリッピングするだけです。

function shinra_gplus_get_count( $url ) {
    $contents = file_get_contents( 
        'https://plusone.google.com/_/+1/fastbutton?url=' 
        . urlencode( $url ) 
    );

    preg_match( '/window\.__SSR = {c: ([\d]+)/', $contents, $matches );

    if( isset( $matches[0] ) ) 
        return (int) str_replace( 'window.__SSR = {c: ', '', $matches[0] );
    return 0;
}
于 2013-03-16T12:34:27.503 に答える