I'm implementing support for Facebook authenticated referrals in both an Android and an iOS app. I've got most of it working. My main problem at this point is getting my Android app to recognize the authentication immediately when a user first launches the app from a link in the Facebook app.
In iOS, there's a function called handleOpenURL in the API. I can call this with the URL that was used to launch my app. On return, [facebook isSessionValid] returns true, indicating that the Facebook API recognized the auth token in the URL.
What is the equivalent way to do this on Android? There is no handleOpenURL method in the Android API. I know that I could call setAccessToken() if I had the access token, but I couldn't find it in the Intent used to launch my activity.
Thanks for your help. Frank