This is for an ASP.NET MVC application. For browser based access on my normal controllers, I'm using standard forms authentication and auth cookies.

My question is how I do the same for an iPhone application. I have a set of RESTful controllers that the iPhone application uses directly, but I'm not sure how to go about authentication...

I was thinking of having a special Login method that returns the auth cookie. Then I can use the standard Authentication attribute on the ASP.NET MVC side, but I'm not sure how to handle this on the iPhone side? Can I store this cookie and have it automatically sent with every request?

Perhaps there's a better approach altogether?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

If it is RESTful you can use an NSURLConnection and send your server the appropriate HTTP headers the API requires.

http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html

link|improve this answer
Thanks, I'll take a look at that. – manu08 Mar 25 '10 at 21:32
I ended up splitting my application into two pieces. The piece meant to be consumed via a browser is using standard forms authentication. The RESTful piece meant for client application consumption now uses custom basic authentication. – manu08 Apr 18 '10 at 22:18
feedback

Your Answer

 
or
required, but never shown

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