plugins/auth-basic/README.md
A simple Basic Authentication plugin that implements HTTP Basic Auth according to RFC 7617, enabling secure authentication with username and password credentials.
This plugin provides HTTP Basic Authentication support for API requests in Yaak. Basic Auth is one of the most widely supported authentication methods, making it ideal for APIs that require simple username/password authentication without the complexity of OAuth flows.
Basic Authentication encodes your username and password credentials using Base64 encoding
and sends them in the Authorization header with each request. The format is:
Authorization: Basic <base64-encoded-credentials>
Where <base64-encoded-credentials> is the Base64 encoding of username:password.
The plugin presents two fields:
Authorization header to your requests