如何知道谁点击了 Facebook 的“赞”我的网站上的按钮?

发布于 2024-10-19 18:00:51 字数 27 浏览 1 评论 0原文

我可以知道谁在我的网站上点击了“赞”吗?

Can I know who clicked "Like" on my website ?

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

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

发布评论

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

评论(5

少跟Wǒ拽 2024-10-26 18:00:51

虽然一些 FB 社交插件会显示喜欢您网站的人(例如 Likebox),但实际上这是不可能的。你只能知道他们有多少,但不知道他们是谁。

Although some FB social plugins show people who have liked your site (e.g. Likebox), actually this is not possible. You can only know how many they are, but not who they are.

小苏打饼 2024-10-26 18:00:51

您可以检查所有 Facebook 好友的留言墙来查看您的帖子。相反,您可以尝试以下操作

Copy your post link from the address bar.
Go to http://developers.facebook.com/docs/reference/plugins/like/
Paste your link in "URL to like" text box.
Click preview.
You will see the name + photo of your facebook friend in the right side (Yes, you can see only 2 to 3 friends).
If a person liked your post and not your facebook friend, you can't find him :(

You can check all of your facebook friend's wall to see your post. Rather, you could try the following

Copy your post link from the address bar.
Go to http://developers.facebook.com/docs/reference/plugins/like/
Paste your link in "URL to like" text box.
Click preview.
You will see the name + photo of your facebook friend in the right side (Yes, you can see only 2 to 3 friends).
If a person liked your post and not your facebook friend, you can't find him :(
感情旳空白 2024-10-26 18:00:51

使用 API,请参阅以下示例:

https://developers.facebook。 com/docs/reference/javascript/FB.Event.subscribe/

FB.Event.subscribe('edge.create',
    function(response) {
        alert('You liked the URL: ' + response);
    }
);

我实际上正在寻找这个答案,但在该页面上找到了它(我几乎相信这个线程这不是你可以做的事情)

Using the API, see this example:

https://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

FB.Event.subscribe('edge.create',
    function(response) {
        alert('You liked the URL: ' + response);
    }
);

I was actually looking for this answer but found it on that page (I almost believed this thread that it wasn't something you can do)

负佳期 2024-10-26 18:00:51

您不能在 Facebook 上查看所有“喜欢”它的用户的页面吗?

Can you not view your page on facebook with all the users that 'Like' it?

此生挚爱伱 2024-10-26 18:00:51

你无法知道谁喜欢它,但你可以知道计数

http:// Graph.facebook.com/?id=http://stackoverflow.com

http://stackoverflow.com 更改为喜欢的网站

You can't know who liked it, but you can know count

http://Graph.facebook.com/?id=http://stackoverflow.com

change http://stackoverflow.com with liked site

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