[TIL] Httpie & postman

양희연·2020년 8월 31일
0

Django

목록 보기
11/14
post-thumbnail

> Httpie

임의의 HTTP 요청을 보내는 프로그램으로 HTTP 서버에 대한 테스트에 사용된다.

설치

$ brew install httpie

Usage

#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을 이용한 api 검증

설치

postman 사이트에서 운영체제에 맞는 버전으로 설치

Usage


new collection → add request → method 선택 후 api 주소 입력 → send

profile
꾸준히 나아가자!

0개의 댓글