반응형
Postman
HTTP 요청을 테스트할 수 있는 API 테스트 도구
Postman 외 테스트 도구
1. HTTP API 테스트 도구 (CLI)
curl(대부분의 리눅스 환경에 내장되어 있습니다.)
GitHub - asciimoo/wuzz: Interactive cli tool for HTTP inspection
Interactive cli tool for HTTP inspection. Contribute to asciimoo/wuzz development by creating an account on GitHub.
github.com
2. HTTP API 테스트 도구 (GUI)
Postman API Platform | Sign Up for Free
Postman is an API platform for building and using APIs. Postman simplifies each step of the API lifecycle and streamlines collaboration so you can create better APIs—faster.
www.postman.com
The Collaborative API Development Platform
Leading Open Source API Development Platform for HTTP, REST, GraphQL, gRPC, SOAP, and WebSockets
insomnia.rest
Postman 사용하는 방법
- 가입 및 설치
- 환경설정
- Workspaces > My Workspaces
- 새로운 탭 오픈
- Postman 화면 구성
1. 새로운 탭 오픈 : 요청/응답을 여러 개 확인
2. HTTP 메서드 : GET, POST, DELETE 등 하나 선택 가능
3. URL 입력 창 : URL과 Endpoint를 입력
4. HTTP 요청 버튼
5. HTTP 요청시 설정할 수 있는 각종 옵션 : 추가적인 파라미터나, 요청 본문(body)을 추가
6. HTTP 응답 화면
Postman API 테스트
GET 요청하기

POST 요청하기

반응형
댓글