I'm using AFNetworking as a network layer for my iPhone app, which connects to a Rails server that uses Devise for authentication. If I sign in (with a POST call) providing username/password after that any GET I perform is ok. If I close the app (not just background) then all my GET request fail because I guess they're not authenticated. So I presume cookies are store somewhere, is there a way to save them in NSUserDefaults or somewhere in order to avoid loggin in all the times?
|
feedback
|
|
Cookies are indeed automatically stored for the lifetime of your application for any subsequent requests on a particular server. A good strategy would be to store the username and password in the keychain or in
You may want to use this in combination with | |||
feedback
|