0
Trello의 REST API를 사용하여 공개 카드에 투표하는 것이 가능합니까?Trello API : 카드에 투표
문서는 매우 도움이되지 않습니다 :
https://trello.com/docs/api/card/index.html
https://trello.com/docs/api/action/index.html
감사합니다!
Trello의 REST API를 사용하여 공개 카드에 투표하는 것이 가능합니까?Trello API : 카드에 투표
문서는 매우 도움이되지 않습니다 :
https://trello.com/docs/api/card/index.html
https://trello.com/docs/api/action/index.html
감사합니다!
원하는 경로는 POST /1/cards/(card id or shortlink)/membersVoted입니다. value
의 유일한 유효한 값은 회원 ID입니다.
일반적으로 이런 상황을 파악하는 가장 좋은 방법은 웹 앱에서 작업을 수행하고 브라우저의 개발 도구에서 네트워크 탭을보고 요청이 무엇인지 확인하는 것입니다.
좋은 tipp! 고마워. 답장! – johannesboyne