This is generated documentation for the http-auth component.
Name | Type | Description |
---|---|---|
username |
string | |
password |
string |
Name | Type | Description |
---|---|---|
request |
http::HttpRequest |
Name | Type | Description |
---|---|---|
output |
http::RequestMiddlewareResponse |
Given the following configuration:
Operation configuration as op-config.json
:
{
"username": "XXX",
"password": "XXX"
}
$ wick invoke candle/http-auth:0.1.0 basic [email protected] -- --request="XXX"
Or with inline configuration:
$ wick invoke candle/http-auth:0.1.0 basic \
--op-with='{ "username":"XXX","password":"XXX" }' \
-- --request="XXX"