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

Udi*_*dan 9 facebook facebook-like

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

Man*_*era 11

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


小智 6

您可以查看所有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 :(
Run Code Online (Sandbox Code Playgroud)


Mat*_*att 5

使用API​​,请参阅此示例:

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

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

我实际上是在寻找这个答案,但在那个页面上找到了它(我几乎相信这个帖子,你不能做的事情)