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 developing android application that integrates with facebook

what I want to do is to display this screenenter image description here

each time the user logged into facebook

how can this be done?

share|improve this question
2  
Why do you want to display it every time? The user only needs to authorize your application once. – bhamlin Mar 27 '12 at 16:10
ah ok .. so it is not possible :) – DeveloperN Mar 27 '12 at 16:11
what do we mean by "EXPIRES" in the code? like this fb.setAccessExpires(sharedPreferences.getLong(EXPIRES, 0)); – DeveloperN Mar 27 '12 at 16:14
1  
you can revoke the permission for a user at the end of their session, with a button, or us javascript for an on exit execution of the script. This would cause the user to have to reinstall or re-auth the app on each visit. this is not recommended but can be done. – Shawn E Carter Mar 27 '12 at 16:47
It can be done, just call to logout() method from the main Facebook.java file every time the user exits the app (You can check some Activity onDestroy() by example) and that will erase your session. For elegance and user experience you must to check before that that the session really exists and is valid with the isSessionValid() method. After that, your app will request Facebook login every time the user returns. – Martin Revert Jun 22 '12 at 1:21
show 1 more comment

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.