2021-07-27 UTC
# Zegnat I think you can think of HTTP Basic Auth as a never-expiring Bearer token in OAuth speak. As you are basically sending an Authorization header for every request containing a "token". In the case of basic auth the token is the base64 encode of your username and password. So the only way to revoke the token is by changing the username and password on the server end.