▲ 4 ▼ A powerful HTTP CLI client written in Go.
You can use go-http-cli similarly as you use cURL. The most commonly used options are available and the same.
So you can do something like:
$ http \
-H Content-Type:application/json \
-X POST \
-d '{ "name": "John Doe" }' \
https://httpbin.org/post?companyId=1234
Will execute the following:
POST https://httpbin.org/post?companyId=1234
Content-Type: application/json
{ "name": "John Doe" }
Register to comment or vote on this story
Looks like very useful tool. I'm not big fan of the Postman and prefer cli tools.
good point
being able to use profile stored in a yaml is a cool thing, but for authentication, does it support oauth?