Home postman 모든 요청에 access token 자동 설정
Post
Cancel

postman 모든 요청에 access token 자동 설정

사전작업

Enviroments에서 환경변수 추가

  • server-url: 서버주소
  • access-token: 엑세스 토큰
  • access-token-expire: 만료시간

Pre-request Script 추가

적용하고자 하는 folder나 request의 Pre-request Script 탭에서 다음 스크립트 추가 folder에 적용할 경우 속한 request에서 Authorization탭에서 Type을 Inherit auth from parent(부모에서 상속)로 설정해야 함.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// 토근이 없거나 만료되었을 경우에만 토큰 요청
let isGetToken = true;
if (
  !pm.environment.get("access-token-expire") ||
  !pm.environment.get("access-token")
) {
  console.log("Token or expiry date are missing");
} else if (pm.environment.get("access-token-expire") <= new Date().getTime()) {
  console.log("Token is expired");
} else {
  isGetToken = false;
  console.log("Token and expiry date are all good");
}

if (isGetToken) {
  const serverUrl = pm.environment.get("server-url");

  const options = {
    url: `${serverUrl}/rest/auth/login`,
    method: "POST",
    header: {
      "Content-Type": "application/json",
    },
    body: {
      mode: "application/json",
      raw: JSON.stringify({
        usrId: "test",
        usrPwd: "1234",
      }),
    },
  };

  pm.sendRequest(options, (err, response) => {
    if (err === null) {
      const { retcode, data } = response.json();
      if (retcode === "OK") {
        const { accessToken, accessTokenExpire } = data;
        pm.environment.set("access-token", accessToken);
        pm.environment.set("access-token-expire", accessTokenExpire);
      }
    }
  });
}
This post is licensed under CC BY 4.0 by the author.