API 문서를 다시 살펴보자.
API Authentication
Some endpoints may require authentication. To submit or view an order, you need to register your API client and obtain an access token.
The endpoints that require authentication expect a bearer token sent in the Authorization header.
Example request body:
{
"clientName": "Postman",
"clientEmail": "valentin@example.com"
}
The response body will contain the access token.
위의 양식에 맞게 request body를 채운 후 send 버튼을 클릭!
accessToken은 앞으로도 두루두루 쓰일 것이므로
Collection의 apiToken이라는 이름의 VARIABLE로 저장해줌
이제 Authorization으로 돌아와서 Type은 Bearer Token을 선택!
그러니 auto-fill로 Token에 이전에 지정한 {{apiToken}}이 채워졌다.
apiToken에 커서를 올리면 관련 정보를 확인할 수 있음
'Tools > Postman' 카테고리의 다른 글
POST request practice (0) | 2022.07.10 |
---|---|
HTTP headers (0) | 2022.07.10 |
Troubleshooting Postman errors (0) | 2022.07.05 |
Using Postman on the web (feat. Cloud/Desktop/Browser Agents) (0) | 2022.07.05 |
Query parameters & Path variables (0) | 2022.06.16 |