Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Perhaps a silly question but if you are not currently logged in to Facebook and you click "Like" button, a pop-up window comes up asking you to login. Once you have entered details, the window is automatically closed but the "Like" button is not updated (e.g. counter is not incremented). So you need to click the button again to like page.

JS code as follows:

    window.fbAsyncInit = function() {
    FB.init({
        status: true, 
        cookie: true, 
        xfbml: true,
        channelUrl: "http://www.mydomain.co.uk/channel.html"
    });

};
(function($){       
    // Async loading of all.js
    var e = document.createElement('script');
    e.async = true;
    e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
    document.getElementById('fb-root').appendChild(e);
})(jQuery);

HTML for like button:

<div class="fb-like" data-send="false" data-layout="button_count" data-width="100" data-show-faces="false" data-href="http://www.mydomain.co.uk/article2.html">
</div>

I used APPID allowing me to check the auth status of user but still same result. I do have all the necessary OG meta tags.

Am I missing something? Or do I need a different approach?

Many thanks in advance!

share|improve this question
Anyone? O_o Maybe related to this? developers.facebook.com/bugs/347759798609016 – Nadhim Orfali Jun 7 '12 at 7:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.