Authorization
header using the Basic Auth scheme.
⚠️ Keep your credentials secure! Do not share your username or password with others or expose them in any client-side code (browsers, apps). Credentials should be securely loaded from an environment variable or key management service on the server.
Credentials are provided via the Authorization
header in the following format:
BASE64_ENCODED_CREDENTIALS
is the Base64 encoding of username:password
.