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.

Goal: Allow a user to authentication with Facebook into an iOS application which requires access to a protected web service that I'm running.

Assumptions: There is a native authentication (and registration) system in place for those users that opt not to use Facebook for sign in.

Details:

  • Assume we want to offer the option for a user to sign in with Facebook without creating a separate account/credential for our system.
  • Because we support our own native auth mechanism (username and password) we have our own user IDs and issue an authentication token that is used for subsequent interactions after the initial credential validation.

I'm surprised that Facebook doesn't have best practices for this in their developer documentation. All the existing documentation is either assuming you are building FB auth into a website, or a standalone mobile app with no service that requires authentication.

Here's my initial thoughts on how this would be designed but want validation on whether it's correct.

  1. Client pops the Facebook iOS Login
  2. UI User signs in with Facebook credentials and gets access token
  3. iOS App passes access token to our server
  4. Our server talks to FB graph API using access token to (a) validate the token and (b) get the FB user ID for that access token.

    e.g. Our server would call https://graph.facebook.com/me/?access_token=XYZ which would return profile info in a JSON object

  5. Assuming it's valid, our server extracts the User ID from the JSON object and checks whether the user already has an account. If so, we issue our own auth ticket to client to use for that session. If user doesn't have an account, we create a new one with the Facebook User ID, assign our own unique UserID and issue our auth ticket.

  6. Client then passes auth ticket back on subsequent interactions that need authentication.

This seems like the right approach to me but not sure if I'm missing something insanely basic and going down the wrong (complicated) path.

share|improve this question
How was this resolved? I am looking at passing the access token as well, and spinning up the user on the server. Seems academic, but am asking. – Chris Van Buskirk Apr 22 '11 at 17:43
This was my implementation using rails and devise: stackoverflow.com/questions/7232490/… – Matt Dec 20 '11 at 6:46
Why not pass the whole auth_hash instead of having to make two calls to the FB API (one from iOS device and once from server)? – bsiddiqui Mar 11 at 18:10

4 Answers

up vote 12 down vote accepted

I just dealt with this myself, and here's the part that bit me:

In your step 5... It's possible for a user to register for an account with you entirely separate from their Facebook ID, right? Then some other time they log in with Facebook.... And you just created them a second account and lost their first one.

There needs to be a way to be logged in to your web service, then log in to facebook, and capture the association between the facebook ID and the local account.

Apart from that, your plan sounds solid.

share|improve this answer
1  
Yep, I've considered that and you're spot on. We plan on merging accounts if it's the same email address, and if not, we will create another way to merge them. – TMC Jan 7 '11 at 20:37
Which Server Library are you using on the Server side to make the request? – TimLeung Mar 3 '11 at 14:30
1  
Which Server Library are you using on the Server side to make the request? The reason I asked is because passing the access token, you have no way of knowing that the access token was generated with your application? The C# library FacebookAPI, allows me to pass in an AccessToken, but its not validated against my AppID..etc... Therefore someone can just pass in an AccessToken from a different application that is valid and impersonate someone else.. – TimLeung Mar 3 '11 at 14:36
3  
@TimLeung - My understanding is that an access token embeds the app ID, and that you can't have an access token WITHOUT an app ID baked into it. – Dan Ray Mar 3 '11 at 14:54
@TimLeunge: We are using the Graph API for requests with the user's access token. – TMC Aug 14 '11 at 7:09

I am trying to figure out how to deal with the same situation.
The central missing piece to me is in Step 3:

3) iOS App passes access token to our server

Please correct me if I'm wrong - but the transmission of the access token is not encrypted - thus anyone listening on the network can replay the token for the length of the session and impersonate the user.

The solution here would be to transmit over https. Thoughts?

Either way fantastic post - you provided some valuable insight.

share|improve this answer
1  
I'm dealing with the same thing integrating FB login to my web site, tho not mobile. Says developers.facebook.com/docs/authentication it comes down to whether client- or server-side auth is being used. If server-side, the access token doesn't need "passed" to the server at all because the code= value is used by the server to get the token. If for whatever reason client-side auth has to be used, then an AJAX call could send the token but then it's a potential security hole (malicious client could spoof the server). – East of Nowhere Jan 27 '12 at 19:15

One problem I can see with this strategy, is that somebody can give you an access token obtained for a different facebook app. As far as I know, there's no way to verify that the access token is for your application, so you'll just go on and use it.

It doesn't sound very harmful, though. Generally people/apps try to protect the access tokens, rather than sharing them.

One possible exploit of this would be, for somebody to create their own site or mobile app, obtain access tokens for their users and try to authenticate them, using your API. If this succeeds (the user is has a facebook account in your site), the malicious site will be able to use your API impersonating the user.

It's a bit of a long shot, but I think it could work.

Edit: It looks like there is a way to validate the access token after all. See the answer by @Daaniel on question Get application id from user access token (or verify the source application for a token).

share|improve this answer

Use https to transmit the auth token to your server, as stated by Facebook

Sharing of Access Tokens

Our Data Policies explicitly prohibit any sharing of an Access Token for your app with any other app. However, we do allow developers to share Tokens between a native implementation and a server implementation of the same App (ie. using the same App ID) as long as the transfer takes place using HTTPS.

share|improve this answer

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.