Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to store authentication token in iPhone

Tags:

xcode

ios

iphone

I'm using a service with REST api, which provides me an authentication token as the response for the sign in POST request. Where is it better (and secure) to store? This token should be added to each request after that.

like image 357
dmdkv Avatar asked Aug 12 '11 05:08

dmdkv


1 Answers

Use Keychain Services to store passwords and tokens.

like image 165
EricS Avatar answered Oct 08 '22 13:10

EricS