A prototype application is being developed with the following features:
- An HTML website integrated with knockoutjs
- Communication with Web API services using jQuery/Ajax
The goal is to restrict access to services only to authorized users. Security measures have been implemented to validate users based on their username and password.
Subsequently, a token needs to be generated and sent back to the client for future communication with API services.
I am curious about how this token is stored on the client-side in order to be passed back to the server for subsequent calls?