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 am using fandjango app for handling facbook user information. If user is logout from facebook and hit url from same browser, I am getting error
Error validating access token: The session is invalid because the user logged out.
Can somebody tell me, how to solve this problem and how to identify if user is log out from facebook or not.

share|improve this question

1 Answer

You can check the facebook object of your request:

def view(request):
    if request.facebook and hasattr(request.facebook, 'user') and request.facebook.user is not None:
        // Here you are sure that request.facebook.user is logged in
share|improve this answer
when user is logged out, you will still able to get request.facebook object. SO from this way we can not identify. – Invincible May 27 '12 at 8:22
have a look solution: github.com/jgorset/fandjango/issues/65 – Invincible May 27 '12 at 8:23

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.