通过AJAX(隐藏的API)获得Google 1页面



努力寻找用于获取 google plag 1 of Page 的解决方案通过JQuery -Google的Hidden API中的Ajax:https://clients6.google.com/rpc

也讨论了此问题:stackoverflow链接

我的尝试:

$.ajax({
    cache: false,
    type: "POST",
    url: "https://clients6.google.com/rpc",
    data: [{
        "method":"pos.plusones.get",
        "id":"p",
        "params":{
            "nolog":true,
            "id":"http://www.apple.com",
            //"id":"http%3A%2F%2Fwww.apple.com",
            "source":"widget",
            "userId":"@viewer",
            "groupId":"@self"
            },
            "jsonrpc":"2.0",
            "key":"p",
            "apiVersion":"v1"
    }],
    crossDomain: true,
    jsonp: true,
    timeout: 5000,
    dataType: "jsonp",
    contentType: "application/json; charset=utf-8",
    success: function (data) {
        console.log(data);
    },
    always: function(data){
        console.log(data);
    }
});

导致Chrome:unduarked Syntaxerror:意外的令牌:

和Firefox:Syntaxerror:缺少;在语句之前

{"错误":{代码: - 32700,messages sagess" quot; quot; quot; quot;'',," data {dogation" {{{'domqor'domm quort" {;

有什么想法解决这个问题?

您可以使用Google Plus JavaScript库获取股票计数:

包括以下内容:

<script src="https://apis.google.com/js/plusone.js"></script>
<script src="https://apis.google.com/js/client:plusone.js"></script>

然后做:

var params = {
  nolog: true,
  id: "http://www.google.com/",
  source: "widget",
  userId: "@viewer",
  groupId: "@self"
};
gapi.client.setApiKey('AIzaSyCKSbrvQasunBoV16zDH9R33D88CeLr9gQ')
gapi.client.rpcRequest('pos.plusones.get', 'v1', params).execute(function(resp) {
  console.log('count:', resp.result.metadata.globalCounts.count)
});

不要用自己的替代apikey。如果您这样做将无法正常工作。

您应该使用官方API供Google 获得 1的页面计数。API Explorer的以下示例显示了API调用和响应数据:

https://developers.google.com/apis-explorer/#p/plus/v1/plus.people.get?userid=%2BGOOGLEPLUSDEEVELERM

如何使用API客户端库的简短演示:

1)异步包括Google 客户端/Google API客户库

<script type="text/javascript">
(function() {
  var po = document.createElement('script');
  po.type = 'text/javascript'; po.async = true;
  po.src = 'https://plus.google.com/js/client:plusone.js';
  var s = document.getElementsByTagName('script')[0];
  s.parentNode.insertBefore(po, s);
})();
</script>

客户端加载时,将带有Google API台的键设置API键:

gapi.client.setApiKey('YOUR_API_KEY')

接下来,加载回调并在加载客户端后放置API调用。

<script>
gapi.client.load('plus', 'v1', 
  function(){ 
    gapi.client.plus.people.get(
      {userId: '+GooglePlusDevelopers'}
    ).execute( function(resp){ console.log(resp); }
    );
  });
</script>

这将返回包括 1计数的JSON数据,例如:

gapi.client.load('plus', 'v1', 
  function(){ 
    gapi.client.plus.people.get(
      {userId: '+GooglePlusDevelopers'}
    ).execute( function(resp){ console.log(resp.plusOneCount); }
    );
  });

将返回225588,页面的计数。

相关内容

  • 没有找到相关文章

最新更新