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 have used this code for registering on website using facebook connect

<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {


    FB.init({appId: "<?=FB_APP_ID?>", status: true, cookie: true, xfbml: true});
    /* All the events registered */
    FB.Event.subscribe('auth.login', function(response) {
    // do something with response
    alert('Here');
    login();
    });
    FB.Event.subscribe('auth.logout', function(response) {
    // do something with response
    logout();
    });
};

(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);
    }());
function login(){
    document.location.href = "<?=SITEPATH?>users/fb_login";
}
function logout(){
    document.location.href = "<?=SITEPATH?>users/logout";
}
</script>

<fb:login-button perms="user_hometown,email,user_birthday">Login with Facebook</fb:login-button>

This is working fine when the user is first login in to the site and and there is no face book session.If i have opened the facebook page and afer that i clicked on the fb button it is not going in to the fb_login page.Actually i want to disable auto login.Thanks in advance

share|improve this question

1 Answer

Just call FB.logout() when you load your page and after you init the Facebook SDK. You're users might get a bit annoyed though as this will log them out of Facebook as well. The two logins are tied together so once you've "connected" your linked.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.