In our web application we are successfully posting to FB timeline and clicking the link opens our web application with the data.
And on iOS when clicking the link from the iPhone FB app's timeline, our iOS app launches and it's provided a url. The url has a custom scheme and params, one of the prams is an authorization token we can turn around and login with. This is nice in that if the user wasn't logged in to our application we can auto login them in with FB SSO using the auth token.
On Android clicking the link on the timeline launches our application but the only thing we get is a URL to our site that we parse for the specific data we need.
I'm confused how to seamlessly login Android users like we are on iOS. They are obviously logged in to FB since that is where the intent launch came from but all calls to the Facebook class like isSessionValid return false as if the user isn't logged in.
Shouldn't I be logged in at this point? Any point in the right direction would be great.