如何通过 API 调用向 Trello 卡片添加评论?
How to add a comment to Trello card via API calls?
我正在通过 Postman 测试 Trello API,我在向卡片添加评论时遇到问题。
我正在向 https://api.trello.com/1/cards/card id/actions/commentCard/comments?&key=my_key&token=my_token&text=comment
提交 PUT 请求,但收到错误消息:
invalid value for idAction
有人可以指出我做错了什么吗?
根据 Trello API,您需要 POST /1/cards/[card id or shortlink]/actions/comments
。请参阅 Trello API
你试试 POST 到
https://api.trello.com/1/cards/cardID/actions/comments?text=yourComment&key=apiKey&token=trelloToken
您必须将变量 cardI
、yourComment
、apiKey
和 trelloToken
更改为您的变量
对于插入评论,这些参数是必需的:
1: id //卡的ID
2: 键 // API 键
3:令牌
4: text // 你想要的评论
所以,如果你想用邮递员来做,使用下面的URL并将方法设置为POST
https://api.trello.com/1/cards/{id}/actions/comments?
key=""&token=""&text=""
而不是 {id} --> 插入您的卡 ID
key="" ---> 然后插入您的私钥和令牌
text="" ---> 然后将您的评论插入 " "
我正在通过 Postman 测试 Trello API,我在向卡片添加评论时遇到问题。
我正在向 https://api.trello.com/1/cards/card id/actions/commentCard/comments?&key=my_key&token=my_token&text=comment
提交 PUT 请求,但收到错误消息:
invalid value for idAction
有人可以指出我做错了什么吗?
根据 Trello API,您需要 POST /1/cards/[card id or shortlink]/actions/comments
。请参阅 Trello API
你试试 POST 到
https://api.trello.com/1/cards/cardID/actions/comments?text=yourComment&key=apiKey&token=trelloToken
您必须将变量 cardI
、yourComment
、apiKey
和 trelloToken
更改为您的变量
对于插入评论,这些参数是必需的: 1: id //卡的ID 2: 键 // API 键 3:令牌 4: text // 你想要的评论
所以,如果你想用邮递员来做,使用下面的URL并将方法设置为POST
https://api.trello.com/1/cards/{id}/actions/comments?
key=""&token=""&text=""
而不是 {id} --> 插入您的卡 ID
key="" ---> 然后插入您的私钥和令牌
text="" ---> 然后将您的评论插入 " "