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'm playing with Facebook Javascript SDK in order to implement a Facebook Connect action. It's already working but the problem is that every time that I try to login again on my application the user has to reenter its facebook password.

I'm sure that there is an option to do this step without entering the password if you are already logged in in facebook (I have seen this in lots of web pages). But how? The documentation http://developers.facebook.com/docs/reference/javascript/FB.login/ and even the source code does not explain how to do this:

"@param opts {Object} (optional) Options to modify login behavior."

My implementation right now is like this:

function login(){
  FB.login(function(response) {
   if (response.authResponse) {

     $(".fb_login").hide();
     $(".fb_logout").show();

     FB.api('/me', function(response) {
       register_user(response.id, response.name);
     });

   } else {
     alert('User cancelled login or did not fully authorize.');
   }
 });
 }

And I call to FB.init like this:

FB.init({
  appId      : 'xxxxxxxxx', // App ID
  status     : true, // check login status
  cookie     : true, // enable cookies to allow the server to access the session
  xfbml      : true  // parse XFBML
});

Maybe it has to be a change in the FB.init or some kind of option while calling to FB.login. Any ideas?

Thanks in advance, Raimon Bosch.

share|improve this question
Seems that the main problem is my logout action. When the user logs out from my application he logs out also from Facebook. That's why they need to reenter the password all the time. So the solution must be create a logout action a little bit more clean. – raimonbosch Jun 12 '12 at 11:48
So you already know the answer to the question (namely, don't log out of Facebook when logging out of your application)? Then please add that as an answer and accept it. :-) – Gijs Jun 12 '12 at 11:55
What is very suprising is why the hell your application needs to close the facebook session of a user? My application is my application it has nothing to do with facebook except for login. developers.facebook.com/docs/reference/javascript/FB.logout "FB.logout will log the user out of both your site and Facebook" – raimonbosch Jun 12 '12 at 11:58
Seems that the correct solution is here: stackoverflow.com/questions/2941334/… – raimonbosch Jun 12 '12 at 12:13

1 Answer

There is a method FB.getLoginStatus which you can use to check if user is already loggedin:

FB.getLoginStatus(function(response) {
  if (response.status === 'connected') {
    var accessToken = response.authResponse.accessToken;
    //you are loggedin 
  } else if (response.status === 'not_authorized') {
    //loggedin but not authorized your app
  } else {
    // the user isn't logged in to Facebook.
  }
});

Did you mean something like that

share|improve this answer
No this is ok. When I login I use this method to detect if the user is logged or not and it works. The problem is that the facebook connect popup is always asking for a password even if I'm already logged in in facebook. – raimonbosch Jun 12 '12 at 11:39

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.