Skip to content

Latest commit

 

History

History

http-headers

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

candle/http-headers

Operations to manipulate HTTP headers for both request and response

Operations

add

Operation Configuration

Name Type Description
header string

Inputs

Name Type Description
input http::RequestMiddlewareResponse
value Strings

Outputs

Name Type Description
output http::RequestMiddlewareResponse

Usage

Given the following configuration:

Operation configuration as op-config.json:

{ 
  "header": "XXX"
}
$ wick invoke candle/http-headers:0.1.0 add [email protected] -- --input="XXX"--value="XXX"

Or with inline configuration:

$ wick invoke candle/http-headers:0.1.0 add \
  --op-with='{ "header":"XXX" }' \
  -- --input="XXX"--value="XXX"