I have a problem with integrating the Feed Dialog of the new Facebook SDK 3.0 for Android. The documentation is pretty clear about how to do it, however omitting one very important case, which is only mentioned as if it'll almost never happen.
Facebook Feed Dialog Documentation
This is the case when the user wants to publish something, but he is not already logged in and does not have Session and Access Token.
The SDK provides a way to set Access Token (and Session as whole) in the old Facebook object, however I cannot find a way to get the Session or Access Token after the user has logged in and posted his feed via the Feed dialog.
So the flow is:
- User presses the share button.
- He is not logged in so there is no Session Access Token
facebook.dialog()is started and the login dialog is presented- the user logs in and shares his link
- he is back to the application, but he still does not have Session Access Token and he is not logged in to facebook, although he logged in before a minute.
My question is, how can I get the access token in step 5 (which is created somewhere for sure) and use it in my program to create a valid SDK 3.0 Session object, so that the user can have valid Session with Access Token after using the facebook dialog?
--- EDIT ---
I just want to clarify that the case is, when the native facebook app is not installed on the phone - therefore a webview dialog is used I guess.