In my current application,i have to let user to login from different iOS devices to their account. Currently i'm doing user authentication from a token value. but in order to support multiple device login i have to find another way for doing this.
Thus, I thought of saving devices uuid
along with token for authentication + security. Then, I come to know I can't use device's uuid
, instead I have to use identifierForVendor
which may or may not provide user or device information always.
So, can anybody suggest the better and proper way of achieving this multiple device login feature for same user account in ios ?