본문 바로가기

Tools/Postman

Testing an API(feat. The Trello REST API)

 

The Trello REST API

The fields of the board to be included in the response. Valid values: all or a comma-separated list of: closed, dateLastActivity, dateLastView, desc, descData, idMemberCreator, idOrganization, invitations, invited, labelNames, memberships, name, pinned, po

developer.atlassian.com

Trello API의 Create a Board reqeust를 보냄

https://developer.atlassian.com/cloud/trello/rest/api-group-boards/#api-boards-post

 

but invalid key란 메시지와 함께 401 에러가 반환됨

Why? key가 필요하다!

 

아래 링크에서 API Key를 생성함

 

https://trello.com/app-key

키값을 넣어줌

그래도 안됨

Why? token이 필요함!

token이 있어야 어느 application에서 request를 보내는지 알 수 있다.

 

token까지 채운 후 request를 보내면 성공적으로 새로운 보드가 만들어진 걸 확인할 수 있음

새롭게 생성된 보드를 보니 list가 자동으로 채워져있음

Why? defaultLists의 Default 값이 true이기 때문!

defaultLists에 false로 값을 넣어준 다음에 보드를 생성해봄

그럼 이렇게 list가 없는 보드가 생성된 걸 확인할 수 있음!

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

API test in Postman  (0) 2022.07.11
POST request practice  (0) 2022.07.10
HTTP headers  (0) 2022.07.10
API Authentication  (0) 2022.07.10
Troubleshooting Postman errors  (0) 2022.07.05