Skip to content

Latest commit

 

History

History

http-auth

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

candle/http-auth

This is generated documentation for the http-auth component.

Operations

basic

Operation Configuration

Name Type Description
username string
password string

Inputs

Name Type Description
request http::HttpRequest

Outputs

Name Type Description
output http::RequestMiddlewareResponse

Usage

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"