javascript - Facebook FB.Event.subscribe does not work - Stack Overflow

I'd like to follow how many likes I get on my page, but something is wrong. I am using the Faceboo

I'd like to follow how many likes I get on my page, but something is wrong. I am using the Facebook javascript event handler but it doesnt work.

It should alerts me when I click on the like or on the dislike button but it does not do anything. Any idea where I am wrong? Thanks! And sorry for my english.

Here is my UPDATED code:

<!DOCTYPE html>
<html xmlns:fb="">
<head>
<title>FBlike check</title>
</head>
<body>
<div id="fb-root"></div>
<script>
(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/en_US/all.js#xfbml=1&appId=00000000000000000";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk')); 

FB.Event.subscribe('edge.create',
    function(response) {
        alert('You liked the URL: ' + response);
    }
);
</script>
<fb:like href="" send="false" layout="button_count" width="200" show_faces="false"></fb:like>
</body>
</html>

I'd like to follow how many likes I get on my page, but something is wrong. I am using the Facebook javascript event handler but it doesnt work.

It should alerts me when I click on the like or on the dislike button but it does not do anything. Any idea where I am wrong? Thanks! And sorry for my english.

Here is my UPDATED code:

<!DOCTYPE html>
<html xmlns:fb="http://ogp.me/ns/fb#">
<head>
<title>FBlike check</title>
</head>
<body>
<div id="fb-root"></div>
<script>
(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/en_US/all.js#xfbml=1&appId=00000000000000000";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk')); 

FB.Event.subscribe('edge.create',
    function(response) {
        alert('You liked the URL: ' + response);
    }
);
</script>
<fb:like href="https://www.facebook./XYZ" send="false" layout="button_count" width="200" show_faces="false"></fb:like>
</body>
</html>
Share Improve this question edited Feb 21, 2018 at 10:11 Aldwoni 1,15810 silver badges25 bronze badges asked Oct 12, 2012 at 0:01 DNReNTiDNReNTi 5214 silver badges18 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

Well.. I tried a lot of versions than this one is worked perfectly:

<script>  
window.fbAsyncInit = function () {
            FB.init({
                appId: 'MY_APP_ID', 
                status: false,
                cookie: false, 
                xfbml: true
            });

            //Additional
            FB.Event.subscribe('edge.create',
                        function (response) {
                            alert('LIKED: ' + response);
                        }
                 );
        };

        // Asynchronously
        (function (d) {
            var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
            if (d.getElementById(id)) { return; }
            js = d.createElement('script'); js.id = id; js.async = true;
            js.src = "//connect.facebook/en_US/all.js";
            ref.parentNode.insertBefore(js, ref);
        } (document));

    </script>
    <fb:like href="https://www.facebook./MY_FB_PAGE" send="false" layout="button_count" width="200" show_faces="false"></fb:like>

I hope it can help for others.

You're using the iframe version of the like button - the javascript events are only fired from the XFBML version - this is explained on the Like Button documentation

How do I know when a user clicks a Like button?

If you are using the XFBML version of the button, you can subscribe to the 'edge.create' event through FB.Event.subscribe.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743850069a4517820.html

相关推荐

  • javascript - Facebook FB.Event.subscribe does not work - Stack Overflow

    I'd like to follow how many likes I get on my page, but something is wrong. I am using the Faceboo

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信