0

我正在尝试计算我对 google plus 的计数,我正在检查我的计数是否正确

https://plusone.google.com/u/0/_/%2B1/fastbutton?count=true&url=MY_URL

我看到 google plus 拒绝了我的网址(不返回 0 或任何内容)

我想知道是否有人可以告诉我我的网址是否有任何问题,我的网址中有字母和数字之外的这些符号

:
/
.
?
=
&
_

我的网址格式如下

(protocol)://(server [such as www]).(domain)/(text).php?(text)=(text)&(text)=(digits)&(text)=(text)
4

2 回答 2

0

Use the URL

https://plusone.google.com/_/+1/fastbutton?url=http%3A%2F%2Fwww.yoursite.com%2Fpath%2Fyour%2fcontent

instead and follow the solution found in this question (parse for window.__SSR = {c:)

于 2012-08-21T08:22:32.537 回答
0

我想你正在寻找这个。这很丑陋,谷歌显然不支持它,但它仍然有效。

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:38:02.927 回答