Skip to main content
1 of 2
user avatar
user avatar

You could look into using tokens. They would have a workflow like this:

  1. User logins for the first time
  2. Server generates a new secure token and returns it to the app
  3. App persists the token and uses it to authenticate requests made by user
  4. When token expires, app requests it to be regenerated.

A common standard used for tokens is OAuth, and you can read more about it here.

user291864