임의의 HTTP 요청을 보내는 프로그램으로 HTTP 서버에 대한 테스트에 사용된다.
$ brew install httpie
#http [OPTION] [METHOD] URL
#method가 생략될 시 GET
#v옵션으로 request의 header와 body 내용도 출력된다.
#GET
$ http -v GET localhost:8000/product
#send JSON object
$ http example.org name='bmo', email='bmo@example.org'
#PUL
$ http PUT example.org name='John' email='john@example.com'
#DELETE
$ http DELETE example.org/product/7
postman 사이트에서 운영체제에 맞는 버전으로 설치
new collection → add request → method 선택 후 api 주소 입력 → send