I have an ionic 3 application where I want to use the touchId feature.
The backend API is being developed in .net.
For my authentication model, I'm thinking that after a user enters a login name and password and is authenticated by the server, it sends back a JWT token.
I can store the token locally and then every time a user uses the touchId it checks if a token is stored locally, then matches that token to the server and that will allow access.
Is this how it works?