Yet another HTTPie clone in Rust.
The release page contains prebuilt binaries for Linux, macOS and Windows.
``` xh 0.7.0 USAGE: xh [FLAGS] [OPTIONS] <[METHOD] URL> [REQUEST_ITEM]...
FLAGS: --offline Construct HTTP requests without sending them anywhere -j, --json (default) Data items from the command line are serialized as a JSON object -f, --form Data items from the command line are serialized as form fields -m, --multipart Similar to --form, but always sends a multipart/form-data request (i.e., even without files) -I, --ignore-stdin Do not attempt to read stdin -F, --follow Do follow redirects -d, --download -h, --headers Print only the response headers, shortcut for --print=h -b, --body Print only the response body, Shortcut for --print=b -c, --continue Resume an interrupted download -v, --verbose Print the whole request as well as the response -q, --quiet Do not print to stdout or stderr -S, --stream Always stream the response body --help Prints help information -V, --version Prints version information
OPTIONS:
-A, --auth-type
ARGS:
<[METHOD] URL> The request URL, preceded by an optional HTTP method
xh
uses HTTPie's request-item syntax to set headers, request body, query string, etc.
=
/:=
for setting the request body's JSON fields (=
for strings and :=
for other JSON types).==
for adding query strings.@
for including files in multipart requests e.g picture@hello.jpg
or picture@hello.jpg;type=image/jpeg
.:
for adding or removing headers e.g connection:keep-alive
or connection:
.;
for including headers with empty values e.g header-without-value;
.```sh
xh httpbin.org/json
xh httpbin.org/post name=ahmed age:=24
xh get httpbin.org/json id==5 sort==true
xh get httpbin.org/json x-api-key:12345
xh put httpbin.org/put id:=49 age:=25 | less
xh -d httpbin.org/json -o res.json ```