http-prompt
http-prompt copied to clipboard
An interactive command-line HTTP and API testing client built on top of HTTPie featuring autocomplete, syntax highlighting, and more. https://twitter.com/httpie
Implemented a new "tree" command, simulating the functionality of the "tree" utility. All the endpoints show up in a tree structure. Also made some minor changes to comply better to...
Hello everyone. It seems for me, that http-prompt somehow ignores `Content-Type: application/x-www-form-urlencoded`. Even though `httpie` preview returns the right command ``` http --form --proxy=https://localhost:9999 --verbose --verify=no http://example.com password=bar username=foo Content-Type:application/x-www-form-urlencoded...
Hi! I just learned about this little gem today and ended up trying to write a Gentoo Ebuild for http-prompt, but one thing missing from the official Gentoo tree is...
I don't know python but I do know several other languages so could someone tell me how do I remove the pager? what specific file or line would be appreciative...
It is a tiny bug but it is annoying. It is related with #208 . The command line long param runs fine: ``` $ http-prompt --version 2.1.0 $ ``` But...
It is a tiny bug but it is annoying. I have the version: ``` $ http-prompt --version 2.1.0 ``` I write a example without `--auth` : ``` $ http-prompt --spec=http://127.0.0.1:8080/v2/api-docs...
It would be nice to be able to set variables for a future request (or `cd` to a path) based on the previous response data. Something like JSONpath syntax would...
I'd like to be able to visualize the tree structure for the api endpoints
Steps to reproduce: - Run server with responses logging on localhost. - `http-prompt localhost` - `> post` Expected result: - Server logged `POST` request. Actual result: - Server logger `GET`...
When I use httpie, you can see data is a byte-literal string: ``` # printf '{"username": "admin", "password": "YWRtaW4=", "timeout": 60}' | http POST http://localhost/api/Login Accept:'application/json' Content-Type:'application/json' --debug ... >>>...