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'm just fleshing out some ideas for an iphone web app and it's going to be (in essence) a CRUD interface to a Rails web backend. Ultimately that backend will be a full blown website too.

My question is: what's the best way to handle "logging in" on the iPhone app? How should it authenticate to allow the user to see their data and add new stuff?

For Rails I generally use Authlogic, so it'd be nice if I could keep doing that.

share|improve this question

2 Answers

up vote 11 down vote accepted

Check out this sample app available on GitHub. It has both the iPhone and Rails implementation and uses keychains on the iPhone side while RESTfully connecting using JSON/XML to the Rails server.

You can use whatever authentication solution you want on the Rails side as long as it has an interface that's available to the iPhone app. This app uses Ryan Bates' simpler nifty_authentication for authentication.

share|improve this answer
2  
Never seen the iphoneonrails.com project so that's worth a green tick alone. Thanks! – colinramsay Jan 1 '10 at 11:34
Yes, ObjectiveResource is a fantastic resource -- glad to help! – bensie Jan 2 '10 at 18:31

Have you think about using Authlogic's single access token option for this. I'm working on a app exactly same as yours. (yet this API call part is not implemented fully) but have a look in to the authlogic example on github.

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.