在我的网站上接收Facebook Like按钮的通知

时间:2012-02-13 01:08:26

标签: notifications facebook-like

当用户在我的博客上发帖时,我正试图接收Facebook通知(在Facebook内)http://visualise.ca

我有以下代码,插件工作正常,但我无法收到通知,我不知道我做错了什么。以下是代码示例:

<html lang="en">
<head>
<meta charset=utf-8>
<meta property="fb:admins" content="589865326" />
</head>
<body>

<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=134951483245924&amp;xfbml=1"></script><fb:like notify="true" href="http://visualise.ca" send="true" layout="button_count" width="450" show_faces="false" colorscheme="dark" font=""></fb:like>

<script type="text/javascript">
window.fbAsyncInit = function() {
    FB.init({appId: '134951483245924', status: true, cookie: true, xfbml: true});
    FB.Event.subscribe('edge.create', function(href, widget) {
    // Do something, e.g. track the click on the "Like" button here
    });
};
(function() {
 var e = document.createElement('script');
 e.type = 'text/javascript';
 e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
 e.async = true;
 document.getElementById('fb-root').appendChild(e);
 }());
</script>
</body>
</html>

我错过了什么?非常感谢您的时间和帮助。

1 个答案:

答案 0 :(得分:0)

FB.Event.subscribe('edge.create', function(href, widget) {
    // Do something, e.g. track the click on the "Like" button here
});

要获取“通知”(不是Facebook通知,因为它们不存在于类似按钮中),您可以在这里将AJAX返回到您喜欢该页面的服务器。