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 have a question regarding the best practices for the login / authentication architecture of an iOS app.

Situation: The app is build to implement an iOS client for a photo gallery (using a RESTful API). Users can see own gallery, add photos and things like that. The app heavily relies on having a valid login for the API (atm it's simply http authentication, to simplify things for the moment). The API calls are made using AFNetworking. This already works fine. Now, I have to implement the authentication.

My questions are as follows:

  • Do you simply login once using a login view and store the credentials somewhere (user defaults for example)?

  • Do you simply use those credentials again once the application loads to see if they're still valid, if not present the login view again to repeat the login + store in user defaults process?

What would you guys consider as a good solution? Would be nice to know how others handle this. Since I have control over the API as well as the app, I'm able to modify the authentication mech. on both sides. However, the API will not be public and is solely used to connect the website (where users can log-in, too) and the app. I had a strong feeling that OAuth2 would be overkill and probably not the best choice.

I'm really not sure how to connect own web apps to mobile apps. Any advice, pointers to articles or even recommended books which cover this topic are really appreciated. Looking forward to your feedback!

share|improve this question
1  
Please use the search before asking. Many SO question are better found by googling than with the internal search. Take a look at this answer: stackoverflow.com/questions/6972092/… – brainray Nov 19 '12 at 21:49
Thank you very much! I feel sorry that I didn't found this on my own, but I swear, I did a lot of research. I really do most of the stuff on my own, but the hint to Keychain was probably all I needed. Once again, thanks a lot! – luckyduck Nov 20 '12 at 5:28

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.