An authorization header on HTTP requests with the following syntax:

Authorization: Basic Base64(FormURLEncode(<USERNAME>):FormURLEncode(<PASSWORD>))

Example

Token Value
USERNAME sample
PASSWORD p5$$word

The actual authorization header would be the following:

Authorization: Basic c2FtcGxlOnA1JTI0JTI0d29yZA==

Related
Basic Authentication (RFC7617)