Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using FB SSO for an Android App and I would like to use the Facebook ID to authenticate my users when they upload data to my server. I imagine I should send the OAuth token when making the call to the server. Any examples out there that could help me get started?

Thanks for any pointers.

share|improve this question
Do you have an solution for this? I have the same requirement.. – Tom May 3 '12 at 21:36
Check out this Android tutorial from facebook, I think might be helpful to you and single sign-on Best Practice (SSO) – ronP Sep 2 '12 at 8:24

2 Answers

I have faced the same problem a while ago. In the end, I did it using the following way:

I get the token via Facebook Android SDK and pass it to my server with the users email address and facebook id. Server tries to get users email address using the token. If the email addresses match, the user has authenticated.

share|improve this answer

Can you please clarify further, you want to authenticate user on your server via Facebook ID? The access token received via SSO will allow you to call graph apis, FQL query etc. which may require special permissions depending upon what you want to do.

More on Android SDK: https://developers.facebook.com/docs/guides/mobile/#android

More on Permissiosn: https://developers.facebook.com/docs/reference/api/permissions/

share|improve this answer
6  
I think the root of the problem is that the Facebook Android SDK authenticates the client, but he also wants to authenticate the user on his own server (when uploading data). Sure the client has the access token via SSO, but how does the server safely know that the user is authenticated. – dpdearing Nov 9 '11 at 16:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.