(no title)
Shmebulock | 5 years ago
Basic Auth is stateless on the client side but not on the server side.
Token auth is stateless on server side; it does not need to store any more public/private key pairs as the number of authenticating users increases. It can just use one. So authenticating users does not affect state
combatentropy|5 years ago
That's a good point. Thank you