Basic Auth Generator
Instantly generate HTTP Basic Authentication headers and code snippets.
Authorization Header
Authorization: Basic ...
Base64 Token
...
.htpasswd Entry
Generating...
cURL Command
curl -u user:pass http://example.com
JavaScript Fetch
fetch('http://example.com', {
headers: {
'Authorization': 'Basic ...'
}
});
Decoded Verification: