Where to store authentication token on iPhone

I use a service with a REST api that provides me with an authentication token as a response to a character in a POST request. Where is it better (and safe) to store? After that, this token should be added to each request.

+6
source share
2 answers

Use Keychain Services to store passwords and tokens.

+8
source

Use https://github.com/granoff/Lockbox . The easy way without knowing apis

+1
source

Source: https://habr.com/ru/post/894902/


All Articles