plugins/auth-bearer/README.md
A Bearer Token authentication plugin for Yaak that implements RFC 6750, enabling secure API access using tokens, API keys, and other bearer credentials.
This plugin provides Bearer Token authentication support for your API requests in Yaak. Bearer Token authentication is widely used in modern APIs, especially those following REST principles and OAuth 2.0 standards. It's the preferred method for APIs that issue access tokens, API keys, or other bearer credentials.
Bearer Token authentication sends your token in the Authorization header with each
request using the Bearer scheme:
Authorization: Bearer <your-token>
The token is transmitted as-is without any additional encoding, making it simple and efficient for API authentication.
The plugin requires only one field:
Authorization header to your requests