Facebook Authentication only in Android and Blackberry?
I have a mobile application and will like to have the authentication implemented either through the Application itself or through Facebook username and password.
For开发者_JAVA技巧 example, if I have username and password of Facebook then one can login into the Application. I don't want to integrate the facebook completely only the authentication part. Is this possible?
Hope to get a quick response.
Regards
Sunil
You can use de Facebook API, I used an implementation based on FBConnect for Android, but last thursday was released the Facebook SDK for Android, now that implementation would be more easy.
You can try to do this as in this project: http://code.google.com/p/triker/. Just don't ask for offline access in mobile app code (remove it from fb url get). When your backend get authcode You will know that user has FB account. If You wish You can exchange that code to auth token on server to get access to users data.
精彩评论