cli
cli copied to clipboard
🥧 HTTPie CLI — modern, user-friendly command-line HTTP client for the API era. JSON support, colors, sessions, downloads, plugins & more.
## Checklist - [x] I've searched for similar feature requests. --- ## Enhancement request Allow reading headers, instead of data, on standard input. (In particular, allowing the secure input of...
In the two commands below, both shows the same JSON. ```sh $ http -v httpbin.org/post a:='"あ"' ... { "a": "あ" } ... $ echo '{"a": "あ"}' | http -v httpbin.org/post...
## Checklist - [x] I've searched for similar feature requests. --- ## Enhancement request For file sending with Form Data, sending with WebAppBoundary syntax is very common and with Httpie,...
## Checklist - [x] I've searched for similar issues. - [x] I'm using the latest version of HTTPie. --- ## Minimal reproduction code and steps see httpie debug output below...
Hey there, I noticed that the stream detection heuristics can be improved to support graphql live queries. The following headers are used together to stream the response: ```http HTTP/1.1 200...
The [Nested JSON](https://httpie.io/docs/cli/nested-json) CLI syntax allows me to construct a request body without having to type out the raw JSON (loving it), but it seems to collide with how arguments...
`http -v -A digest -a username:password pie.dev/digest-auth/auth/username/password` doesn't print the Authorization request header I guess this is challenging because the header is populated in the requests library *** ```sh >...
Hi. My name is Verena Ebert, and I am a PhD student at the University of Stuttgart in Germany. A few months ago, I have examined 90 GitHub projects to...
```sh > http -A digest -a username:password pie.dev/digest-auth/auth-int/username/password http: error: TypeError: expected string or bytes-like object ``` See https://pie.dev/#/Auth/get_digest_auth__qop___user___passwd_ for more about qop ## Debug output Please re-run the command...
There's no obvious way to easily open and send the output to your default browser. I hope I don't have to go through the tedious and error prone method which...