본문 바로가기
알아두면 좋은 지식/it 이슈

Postman(포스트맨)이란? 설명, 간단한 사용법, 설치

by 가아앗 2022. 11. 2.
반응형

 

 Postman

 

Postman은 API를 구축하고 사용하기 위한 API 플랫폼

Postman은 API 수명 주기의 각 단계를 단순화 가능

협업을 간소화하여 더 나은 API를 더 빠르게 만들 수 있다.

API Request로 Response를 확인 가능.

 

 

 Download

 

Postman 공식 홈페이지에서 설치 가능하며 로그인 후 사용 가능합니다.

 

https://www.postman.com/

 

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

 

 사용법

 

https://jsonplaceholder.typicode.com/

 

JSONPlaceholder - Free Fake REST API

{JSON} Placeholder Free fake API for testing and prototyping. Powered by JSON Server + LowDB. Tested with XV. As of Oct 2022, serving ~1.7 billion requests each month.

jsonplaceholder.typicode.com

 

테스트를 위해서 위 사이트에 가서 아래 사진 1에서 /users를 클릭하고 해당 url을 복사해줍니다.

사진1

 

그리고 해당 주소를 Postman을 사용해서 실행해봅니다. 

GET 방식으로 주소를 입력하고 Send를 누릅니다.

URL : https://jsonplaceholder.typicode.com/users

그러면 Get 방식으로 요청한 결과값을 아래에서 확인할 수 있습니다.

 JSON 외에도 다양한 방식으로 값들을 확인할 수도 있습니다.

 

다음은 Parameter를 붙여서 Get 방식으로 URL을 SEND 해보겠습니다.

URL : https://jsonplaceholder.typicode.com/users?id=1

Query Parmas에 KEY, Value 값으로  (id, 1)이 들어온 걸 확인할 수 있습니다.

Body에는 Param으로 던져진 id가 1인 값의 결괏값이 출력되었습니다.

 

 

 

반응형

댓글