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.
HTTPie doesn't work in my office because our computers are behind an proxy. It still doesn't work even after specifying the `--proxy` argument, because the proxy is superevil. It uses...
Would be useful in some cases, e.g. when a host serves different responses depending on the IP version. `-4`and `-6` are pretty common for this anyway.
Hey there, Really great work on HTTPie. I've come to love it a lot -- so much nicer than cURL. =) Just chiming in w/ a feature request: it'd be...
I'm not 100% sure this is a bug yet, as opposed to a missing feature, but either way: if you curl something, and use a cookie file, and set a...
Per cURL --help: --resolve HOST:PORT:ADDRESS Force resolve of HOST:PORT to ADDRESS (bypasses hosts file) example usage: `http --resolve "www.foo.com:127.0.0.1" GET www.foo.com/whatever` OR `http --resolve "www.foo.com:8080:127.0.0.1" GET www.foo.com:8080/whatever`
I'm using this tool to debug / simulate some interaction with Google Drive API, not sure how can httpie simulate a multipart/related POST? or if I am right, this will...
After a redirect to a different domain, a cookie set using `Set-Cookie` without a `Domain` should become a cookie set only for the redirected domain, but HTTPie saves it in...
Although not the most common, some services sometimes have HTTP headers that should be sent only for some specific requests, but not all of them, and as such shouldn't be...
Uploading files using input redirection fails for large files. I presume the whole file is getting read into memory first. Last time I checked requests library can perform streaming uploads....