Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 5 down vote accepted

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 NSUserDefaults like this:

// Setting
[[NSUserDefaults standardDefaults] setObject:username forKey:@"username"];
[[NSUserDefaults standardDefaults] synchronize];

// Getting
NSString *username = [[NSUserDefaults standardDefaults] objectForKey:@"username"];

You may want to use this in combination with AFHTTPClient to send your credentials along with every request in an Authorization HTTP header.

share|improve this answer
1  
Thanks for replying, yes this is what I do to keep old credentials. What I'd like to avoid is the initial POST for login at every app restart, I was just wondering if the lifetime of the cookie handled by AFNetworking can be extended. – Emanuele Fumagalli Dec 28 '11 at 20:02
3  
Actually, please don't store usernames and passwords in NSUserDefaults. Use the keychain instead. Apple distributes a KeychainWrapper that does basically the same thing, but more securely. – LunchboxG5 Aug 12 '12 at 4:15

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.