是否可以通过 API 访问用户的 Google +1 (Plus One) 历史记录?
我想要访问用户的 Google Plus One 历史记录
启用 +1 后,历史记录将保存在您的 Google 个人资料中,并且可以选择显示:
http://www.google.com/+1/button/
可以通过编程方式访问此内容(一旦用户通过正常的 Google 身份验证和授权授予许可?
)只能找到API的信息将按钮添加到站点。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您始终可以尝试解析 G+ 本身使用的数据。
G+ 用户个人资料有一个包含所有公开 +1 的标签,可以通过
https://plus.google.com/_/plusone/get?oid=
看起来和JSON有关,但也有一些区别。
You can allways try to parse the data used by G+ itself.
The G+ user profile has a tab with all public +1, that can be fetched with
https://plus.google.com/_/plusone/get?oid=<google-plus-id>
It seems to be related to JSON, but with some differences.
看看这个...
https://developers.google.com/+/history/
Check this out....
https://developers.google.com/+/history/
戴夫,
我不确定用户的历史记录,但可以通过 JSON-RPC 服务 (https://clients6.google.com/rpc) 获取特定 URL 的计数。这是一篇关于如何执行以下操作的小帖子:
http ://www.johndyer.name/post/Getting-Counts-Twitter-Links-Facebook-Likes-Shares-and-Google-Plus-One-Buttons.aspx
我猜也是一样服务可以获取额外的数据,但我也找不到任何公共文档。
Dave,
I'm not sure about a user's history, but the count for particular URL is available via a JSON-RPC service (https://clients6.google.com/rpc). Here's a little post on how to:
http://www.johndyer.name/post/Getting-Counts-Twitter-Links-Facebook-Likes-Shares-and-Google-Plus-One-Buttons.aspx
I'm guessing that same service can get additional data, but I can't find any public documentation either.