I use facebook for android sdk for SSO.
My activity calls fb.authorize() function to do OAuth. In this function I give a reference to the DialogListener object that is responsible to take proper actions depending on OAuth results. It is possible that the OS has killed the activity by the time user returns from FB App and the DialogListener Object is lost. In that case there's no way to get the AccessTokens which we were supposed to get in DialogListener.
How to handle this situation?
onCreate()I usemFB = new Facebook(APPID);and inonActivityResultI callmFB.authorizeCallback(bundle);. andmFBis my class variable. Since it is not initiated inonCreateit returns me a null pointer exception. I can completely avoid it from crashing. But since attached dialog listener is now gone with activity being killed, how can i get the access tokens? – Enigma Aug 3 '12 at 13:04