We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A request can declare variables that are available as regular variables. A new variable is declared by the prefix @ in front of the variable name.
@
### @id = 2 @hostname = httpbin.org @port = 443 @host = {{hostname}}:{{port}} GET https://{{host}}/get?id={{id}} HTTP/1.1
the equivalent via the CLI is this:
curlz r --define id=2 \ --define hostname=httpbin.org \ --define port=443 \ --define 'host={{hostname}}:{{port}}' \ 'https://{{host}}/get?id={{id}}'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Extension to the http language file format #5
A request can declare variables that are available as regular variables.
A new variable is declared by the prefix
@
in front of the variable name.Example
Example CLI
the equivalent via the CLI is this:
The text was updated successfully, but these errors were encountered: