0

我想处理用户对 Like 按钮的点击。我将生成的代码从Like 按钮文档页面复制到另一个 页面,但是每次单击 Like 按钮时,什么都没有发生。

我已阅读与此问题相关的所有问题,但没有任何效果。我知道这个问题已经被问过很多次了,但是这个问题让我发疯了。

我正在使用火狐。

这是我的完整 HTML:

<!doctype html>
<html xmlns:fb="http://ogp.me/ns/fb#">
<head>
    <meta charset="utf-8">
    <title>Facebook Like Button</title>
</head>
<body>
<div id="fb-root"></div>
<script>
    window.fbAsyncInit = function () {
        FB.init({
            appId: 'MY_APP_ID', // App ID
            status: true, // check login status
            cookie: true, // enable cookies to allow the server to access the session
            xfbml: true  // parse XFBML
        });

        FB.Event.subscribe('edge.create', function () {
            alert('Like button is clicked');
        });
    };

    (function (d, s, id) {
        var js, fjs = d.getElementsByTagName(s)[0];
        if (d.getElementById(id)) return;
        js = d.createElement(s); js.id = id;
        js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=MY_APP_ID";
        fjs.parentNode.insertBefore(js, fjs);
    } (document, 'script', 'facebook-jssdk'));
</script>


   <fb:like href="http://www.bluelink.ws/" send="true" layout="button_count" width="450" show_faces="true"></fb:like>


</body>
</html>
4

1 回答 1

1

您保留了示例中的 MY_APP_ID,这需要是实际的应用程序 ID,而不是示例中的文本字符串。

在 chrome/firefox 中打开 JS 控制台以监视错误/控制台消息也是值得的。

并检查您在 Facebook Linter 中喜欢的 URL:https ://developers.facebook.com/tools/debug以检查您的网站 OG 标签

于 2012-05-03T11:03:57.423 回答