basic-auth-generator
Generate HTTP Basic Authentication headers by entering a username and password. Simplifies security token creation for API and web service authentication.
Instructions
Generate HTTP Basic Authentication header
Input Schema
Name | Required | Description | Default |
---|---|---|---|
password | Yes | Password | |
username | Yes | Username |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"password": {
"description": "Password",
"type": "string"
},
"username": {
"description": "Username",
"type": "string"
}
},
"required": [
"username",
"password"
],
"type": "object"
}