Skip to content

Latest commit

 

History

History
75 lines (47 loc) · 1.37 KB

http.rst

File metadata and controls

75 lines (47 loc) · 1.37 KB

http - fetch and verify a URL

Attempts to fetch a URL and makes sure the HTTP return code is (by default) 200/OK. Can also match the content of the page to a regular expression.

url

type

string

required

true

the URL to open

regexp

type

regexp

required

false

default

none

the regexp to look for in the body of the response

allowed_codes

type

comma-separated list of integer

required

false

default

200

a list of acceptable HTTP status codes

allow_redirects

type

bool

required

false

default

true

Follow redirects

username

type

str

required

false

default

none

Username for http basic auth

password

type

str

required

false

default

none

Password for http basic auth

verify_hostname

type

boolean

required

false

default

true

set to false to disable SSL hostname verification (e.g. with self-signed certificates)

timeout

type

integer

required

false

default

5

the timeout in seconds for the HTTP request to complete

headers

type

JSON map as string

required

false

default

{}

JSON map of HTTP header names and values to add to the request