|
|
|
|
|
by antsar
2932 days ago
|
|
One approach that doesn't rely on cookies is HTTP Basic Authentication. The first request to a protected page will produce an authentication prompt[0]. Subsequent requests to the same site will automatically send the same set of credentials (in every browser I'm familiar with. This part of the spec seems to be optional [1]). Using HTTP Basic Authentication, the server can track the user across different pages. All other state can be maintained on the server side, keyed to the user. [0] https://i.stack.imgur.com/QnUZW.png [1] https://tools.ietf.org/html/rfc7617#section-2.2 |
|