I would like to know how to effectively store the access token, refresh tokens and their expirations in the iOS keychain.
All the examples I have seen seem to store only one key-value combination. How do we store multiple key values for one keychain identifier?
If there is a better way to store the above, please let me know.
You will first want to build a NSDictionary with the key/values you want. Next, you could use something like Lockbox to store that NSDictionary to the keychain, using the provided
setDictionary:forKey:
interface.UPDATE: To change values stored in that dictionary, you only have to pass by a
NSMutableDictionary
(that's the common way of doing):FYI, a
NSMutableDictionary
is a subclass ofNSDictionary
, so it's safe to save that back directly to the keychain!