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.

i stuck with facebook login button, logging in works well, but when i log out from the site through logout.php, it keeps me logged in on facebook button(but logged out from the site!) Please help me..here is the code

<div id="fb-root" style="display:none;"></div>
<script src="//connect.facebook.net/en_US/all.js"></script>
<script>
    (function(d, debug){
        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;
        ref.parentNode.insertBefore(js, ref);
        }(document, /*debug*/ false));

    window.fbAsyncInit = function() {
    FB.init({
        appId      : '<?php echo FACEBOOK_APP_ID; ?>',
        channelUrl : 'www.###.com', // Channel File for x-domain communication
        status     : true, // check the login status upon init?
        cookie     : true, // set sessions cookies to allow your server to access the session?
        xfbml      : true  // parse XFBML tags on this page?
    });
    FB.Event.subscribe('auth.login', function () {
        window.location = 'www.????????.com';
    });
</script>
    <fb:login-button autologoutlink='true' perms='email' length="short" size="medium">Log In with Facebook
    </fb:login-button>
share|improve this question

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.