I am using node-persist module in my application to store the tokens.
setItemSync("userResourceToken", "someToken...")
As per understanding this token will be shared across multiple sessions. Is that right?
If above question is true, then to separate the token for every user should I store the user specific token with unique key?
In this case server storage is an option or should I choose the any db for this purpose?
I am using node-persist module in my application to store the tokens.
setItemSync("userResourceToken", "someToken...")
As per understanding this token will be shared across multiple sessions. Is that right?
If above question is true, then to separate the token for every user should I store the user specific token with unique key? In this case server storage is an option or should I choose the any db for this purpose?