I'm using facebook sdk 3.0.
I'd like to use Facebook Session in the Receiver. but what could I do if the session is expired?
|
I'm using facebook sdk 3.0. I'd like to use Facebook Session in the Receiver. but what could I do if the session is expired? |
|||
|
The SDK is designed to be used a bit differently than what you are trying to do here. You don't need to handle the In it's authentication section, it is shown clearly how to handle session state changes. Basically, facebook provides you with a bunch of UI lifecycle helper classes that you need to include wherever you need facebook functionality in your app. These helpers will determine if session is active, expired etc and call a method All you need to do is perform simple checks in this method and redirect the user appropriately. For example, if the session has expired you can just redirect the user to a login page where there will a facebook login button (this button is provided by facebook in the SDK and it handles authentication flow for you. It will ask the user for permissions, authenticate the session etc without you needing to do anything). Work through the tutorial once and I'm sure you'll have a much better understanding. Hope this helps. |
|||||||||
|
|
Have you tried the code at https://github.com/facebook/facebook-android-sdk/blob/master/samples/GraphApiSample/src/com/facebook/samples/graphapi/GraphApiSampleActivity.java#L136-L142
This validates if session is active or not, if not - create a new one. |
|||||||||||
|
|
I found that facebook developer site said the following: App access tokens can be generated for Facebook Apps. Generate app access tokens with a different login flow than the other tokens; this can be done in code. This type of token is useful to modify app settings, create and manage test users or read App Insights data. You can use app tokens to publish or delete content on behalf of a user who gave your app permissions. For example, if a user granted your app publish_stream permissions, your app can use an app access token to publish a status update on their behalf.
source web page about access token so, It seems that we don't have to handle this. If you want, you can show a message at notification bar when the token is expired due to some problem. |
|||
|
|
|
In facebook android sdk 3.0, if session is expired than you need to re-open the session with existing token. This you can do from other than activities (ui thread context) also. For re-opening the expired session
Please read on looper.prepare & loop mechanism before implementing this. |
|||||
|
Session, but it expires? The API documentation says that the Android SDK will auto-renew the session, but, it will expire if the user changes passwords or revokes the application. How is the expiration returned to the developer? If it is in aReceiver, then there is no UI - how do we produce the login? – mparaz Feb 13 at 17:40