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.

Hi I'm using Facebook sdk3.0 for Android. How can I check whether a user is logged in or not?

Currently I'm using this:

public static boolean isUserLoggedInWithFacebook() {
    Session session = Session.getActiveSession();
    if(session != null && session.isOpened()) 
        return true;
    return false;
}

But it sometimes gives false while user is still logged in.

share|improve this question

1 Answer

try using facebook.isSessionValid(). It should return false if the user is logged out.

share|improve this answer
This works perfectly. Just that I'm trying to avoid old APIs. I know facebook.isSessionValid() is not. But I didn't use facebook.authorize() to log user in at the beginning. All I deal with is session. If I create a Facebook object in my function using Facebook fb = new Facebook("my_api_key"); I have to set its access token and expire date and those functions are expired.:S – Xiangxin Sun Dec 2 '12 at 9:41
Can you give more details on how you're creating and closing the sessions, and what you mean by "the user is still logged in" when the session is not open? Also, just because a session is still open on the client side, doesn't always mean the user is still "logged in", or that your app is still authorized. The only way to determine that is to make a "me" request, and make sure there aren't any errors. – Ming Li Dec 3 '12 at 18:25

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.