httpie: 一个 terminal 的 http 工具

一个 http 的 terminal 工具
更新于: 2024-01-27 10:45:58

安装

# 用 brew 安装 (我安装失败了)
brew install httpie
# 或者(很容易成功)
python -m pip install httpie
# 新 terminal
http -v

cheatsheet

功能代码
get 请求
# https
https httpie.io/hello
# http with GET,get 可以省略
http GET pie.dev/get
http pie.dev/get
post 请求
# POST
http POST pie.dev/post hello=world
http pie.dev/post hello=world
当前域名
http :/foo
http :3000/bar
alias 
# Create an alias
alias http-unix='http --default-scheme="http+unix"'

参考