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.

Ive got an android app, it connect with facebook and ask for "offline access", so the access token should be always the same, but then I logout (facebook.logout()) and login again facebook is giving me a new access token. How I can stop it?

share|improve this question
Don't log out? When logging out you basically say that you explicity want to terminate this session (=make the token invalid). This means you will get a new token in the future. Just close your app and reuse the stored token next time. – user658042 Jan 5 '12 at 17:24
ok, but when I dont logout and later click the to login again its automatically login me with default use and dont display a webview with facebook login (I pressed before to "not remember" my login and pass) – goodm Jan 5 '12 at 17:40
2  
Ok, I found the solution. I just override the original facebook.logout function and change the facebook.authorize. public void logingOut(Context context) { Util.clearCookies(context); setAccessToken(null); setAccessExpires(0); } and: facebook.authorize(this, perms,-1,new DialogListener()... – goodm Jan 5 '12 at 18:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.