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.
<html>
    <head>
      <title>My Facebook Login Page</title>
    </head>
    <body>
      <div id="fb-root"></div>
      <script>
        window.fbAsyncInit = function() {
          FB.init({
            appId      : 'appID',
            status     : true,
            cookie     : true,
            xfbml      : true,
            oauth      : true,
          });
        };
        (function(d){
           var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
           js = d.createElement('script'); js.id = id; js.async = true;
           js.src = "//connect.facebook.net/en_US/all.js";
           d.getElementsByTagName('head')[0].appendChild(js);
         }(document));
      </script>
      <div class="fb-login-button">Login with Facebook</div>

    </body>
</html>

Every time when i click on [Login with Facebook] button i see in JS Console this message "FB.login() called when user is already connected."

How to disconnect user?

share|improve this question

2 Answers

Use FB.getLoginStatus method to find whether the user in logged in or not.

If they already logged in, try to hide the Login button. Because the login button will be visible always and do nothing on click when the user already logged in.

Refer this link for FB.getLoginStatus

share|improve this answer

Good answer from Abirami, one additional item.

How to disconnect user?

Disconnecting a user is done with a call similar to FB.login() called FB.logout() See: http://developers.facebook.com/docs/reference/javascript/FB.logout/

share|improve this answer
Did this answer, solve, or help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Apr 17 '12 at 19:20

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.