检查用户是否访问了该 URL

发布于 2024-12-29 22:14:32 字数 53 浏览 0 评论 0原文

我想检查访问者是否对某个网址进行了 +1(如果没有,则向他显示 +1 按钮)。有什么想法吗?

I'd like to check if a visitor has +1ed a certain URL (and show him a +1 button if he hasn't). Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七分※倦醒 2025-01-05 22:14:32

有一个用于计数的隐藏 API,可通过以下 URL 获取:

https://clients6.google.com/rpc?key=AIzaSyCKSbrvQasunBoV16zDH9R33D88CeLr9gQ< /p>

它需要 POST 数据在JSON-RPC 格式,因此您需要发送如下请求:

[{
    "method": "pos.plusones.get",
    "id": "p",
    "params": {
        "nolog": true,
        "id": "http://www.mydomain.com/mypage",
        "source": "widget",
        "userId": "@viewer",
        "groupId": "@self"
    },
    "jsonrpc": "2.0",
    "key": "p",
    "apiVersion": "v1"
}]

但是,由于同源策略,您将无法在 JavaScript 中使用此请求。这意味着您必须设置服务器端解决方案,除非您选择选项 2。

选项 2 是我在几个自定义社交插件上使用的。 http://sharedcount.com 提供了一个非常简单的 API,如果回调是,它会提供 JSON-P 形式的结果指定的:

var scr = document.createElement("script");
    myUrl = encodeURIComponent("http://mydomain.com/mypage"),
    apiUrl = "http://api.sharedcount.com/?url="+myUrl+"&callback=shareCounts";

scr.src = apiUrl;
document.body.appendChild(scr);

function shareCounts(data) {
    alert(data.GooglePlusOne);
}

There's a hidden API for the counts, available at the following URL:

https://clients6.google.com/rpc?key=AIzaSyCKSbrvQasunBoV16zDH9R33D88CeLr9gQ

It expects POST data in JSON-RPC format, so you'll need to send a request like this:

[{
    "method": "pos.plusones.get",
    "id": "p",
    "params": {
        "nolog": true,
        "id": "http://www.mydomain.com/mypage",
        "source": "widget",
        "userId": "@viewer",
        "groupId": "@self"
    },
    "jsonrpc": "2.0",
    "key": "p",
    "apiVersion": "v1"
}]

However, you won't be able to use this in JavaScript due to the Same-Origin policy. This means you'll have to set up a server-side solution unless you go for Option 2.

Option 2 is what I use on a couple custom social plugins. A very simple API is available at http://sharedcount.com, which offers the result as JSON-P if a callback is specified:

var scr = document.createElement("script");
    myUrl = encodeURIComponent("http://mydomain.com/mypage"),
    apiUrl = "http://api.sharedcount.com/?url="+myUrl+"&callback=shareCounts";

scr.src = apiUrl;
document.body.appendChild(scr);

function shareCounts(data) {
    alert(data.GooglePlusOne);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文