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.

We are building an iPhone application that requires Facebook to signup. We would like to do two things after a user has created an account, and then logs out of our application. We are working within the constraints of four primary assumptions.

A. User(s) have already signed up and their FB token(s) are stored on the device

B. There may be more than one user that signs up or logs in from a single device. In which case multiple tokens may be stored.

C. No user is logged in to our app currently

D. It is unclear which user is logged into the Facebook app at this time

With these assumptions, we have two questions:

  1. How do we match the correct stored token with the person currently logged into Facebook on the device?

  2. How do we skip the prompt, "You have already authorized..." that requires an "okay" before returning to the app?

Code examples would be very much appreciated.

share|improve this question
Given {C.} this seems nearly impossible. If a user is logged into your app and has already approved the app, you could probably just store the oauth token internally in a database tied to the user on your system. However if the user is anonymous and you have multiple tokens associated with multiple users, I don't believe there is a way to infer the correct token without potential security risks { key=user_name, value=assoc_oauth_token }... Maybe I'm just mis-understanding the question. – ry_donahue Feb 17 '12 at 15:16

1 Answer

So if I understood correctly, you just want to achieve multi-facebook-user on your single device and ability to swap between them without reauthenticating?

Here are the steps I think you could follow to do this:

  1. User signs in
  2. Store their profile_pic + facebook uid + access_token + name in some kind of persistent storage, you could simply store this in NSUserDefaults but there are ways to use more secured Keychain storage for access_token here
  3. Set this set of key/value pair as 'active'
  4. When user signs out, the app doesn't actually sign the user out of Facebook, but just clear the active key/value pair
  5. Present the users who logged in by reading back the values you stored (names + profile pic)
  6. User tap on one profile, set this as active or authenticate a new profile and repeat step

Important Note: you have to be very careful now because traditionally it was possible to get a non-expiring access token with offline_access permission. But starting July 2012, this is deprecated and the token will expire. So you need to extend the token everytime the user profile is selected

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.