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 want to disable auto login in my website when there is a facebook session user. I want the user to click on the facebook login button

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId: '<?php echo $facebook->getAppID() ?>',
      cookie: true,
      xfbml: true,
      oauth: true
    });
    FB.Event.subscribe('auth.login', function(response) {
      window.location.reload();
    });
    FB.Event.subscribe('auth.logout', function(response) {
      window.location.reload();
    });
  };
  (function() {
    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);
  }());
</script>
share|improve this question
Can I ask why you want the user to click login? Does this make more information about the user available to you, or what? – L0j1k Dec 24 '12 at 7:50

1 Answer

up vote 0 down vote accepted

Instead of facebook events, simply use FB.Login.

Call the userLogin(), when the user click your Login button (not the facebook login button, but a simple button)

function userLogin()
    {
        FB.login(function(response) 
        {
           if (response.authResponse) 
           {
             console.log('Welcome!  Fetching your information.... ');
             var access_token = response.authResponse.accessToken;
             location.href = "REDIRECT_TO.php";
           } 
           else 
           {
             console.log('User cancelled login or did not fully authorize.');
           }
         });
    }   

So now, the user have to click on the facebook login button every time he visits your site.

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.