I am building an app that uses the facebook android sdk and sso abilities. Every time you launch my app it will briefly show a facebook window while it logs in via the existing facebook app through sso. Is there a way to hide this screen and make sure my activity stays on top while it's check the facebook credentials and session etc.
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.
|
|
|
For the first is user in not logged-in it ask it popup the dialog for login. But once user logged in and you try to send any facebook request, it check the session, if it is valid then it will not shown dialog. When you login first time store the expire and access token to your shared preferences and on second time pass/set these(expire and access token to the facebook object) and check is Valid session. Here is brief code; stored you access token and expires in below method facebook.authorize : onComplete listener: e.g.
for next time by passing these value to facebook object and check its valid ?
hope useful to you.... |
|||
|