Web Tools

HTTP Basic Authentication

Authorization: Basic

To send a HTTP Basic Authentication the client must send a Header with the name "Authorization"

Authorization: Basic YWFhOmJiYg==
The string behind Basic is a base 64 encoded string of username, colon and password.
BASE64_ENCODE([USERNAME]:[PASSWORD])
And no, ..... it's not possible to use a colon in the username!