dmdkv
dmdkv

Reputation: 175

Where to store authentication token in 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.

Upvotes: 6

Views: 2103

Answers (2)

Ankish Jain
Ankish Jain

Reputation: 11361

Use this https://github.com/granoff/Lockbox . Simple way without knowing the apis

Upvotes: 1

EricS
EricS

Reputation: 9768

Use Keychain Services to store passwords and tokens.

Upvotes: 8

Related Questions