관리 메뉴

피터의 개발이야기

[Postman] Postman에서 응답값을 변수 사용하기 본문

DevTool/Postman

[Postman] Postman에서 응답값을 변수 사용하기

기록하는 백앤드개발자 2022. 5. 29. 22:01
반응형

 

ㅁ 개요

 ㅇ PostMan으로 테스트 시에 인증토큰 값은 변수로 지정하여 사용하면 편리하다. 토큰값을 변수로 지정하면 복사해서 다른 테스트요청에  붙일 필요가 없다.

 ㅇ PostMan의 Tests를 이용하여 받은 값은 변수로 지정하는 방법을 정리하였다.

 

 

ㅁ PostMan Tests 탭

var data = pm.response.json();
pm.environment.set("prod_token", data.token);
pm.environment.set("prod_refresh_token", data.refresh_token);
pm.test("Status code is 200", function () {
    pm.response.to.have.status(200);
});

 ㅇ responseBoby를 json으로 파싱하여 data 객체를 생성한다.

 ㅇ data에서 토큰 정보를 얻어 prod_token, prod_refresh_token 변수를 생성하였다.

 ㅇ 통신이 성공(status200)인 경우 

    " Status code is 200"을 출력하도록 하였다.

 

 

ㅁ 변수값 확인

 ㅇ 오른쪽 상단을 클릭한다.

 

 

 ㅇ 그 동안 선언되었던 변수를 확인할 수 있다.

 

 

ㅁ 변수를 사용하는 방법

 ㅇ token이 사용되는 곳이 {{prod_token}}의 형태로 지정하면 token값이 세팅이 된다.

 

 

ㅁ 함께 보면 좋은 글

https://learning.postman.com/docs/writing-scripts/test-scripts/

 

Writing tests | Postman Learning Center

Writing tests: documentation for Postman, the collaboration platform for API development. Create better APIs—faster.

learning.postman.com

https://stickyny.tistory.com/136

반응형

'DevTool > Postman' 카테고리의 다른 글

[Postman] 테스트 발송 시 현재시간, 램덤숫자 넣기  (0) 2022.06.03
Postman으로 push 보내기  (0) 2021.01.22
Comments