如何使用 Trello 的 API 打开一个新看板
How to open a new board with Trello's API
来自API:
然而这失败了:
Trello.rest('GET', `/members/me/boards/${id}`, {actions:['createBoard']})
出现此错误:
responseText:"Cannot GET /1/members/me/boards/fkdsjg412?key=14aeebb47bb7ce6b306894ccf6c5c4cf&token=618302133a76be5f3f631466f1989edcaca4156a92ae2175d0d25aee1065d4c3&actions%5B%5D=createBoard"
好的,解决了:
Trello.rest('POST', `boards`, {name: boardName});
仍然不知道我在原始问题中提到的 actions 参数的作用。
来自API:
然而这失败了:
Trello.rest('GET', `/members/me/boards/${id}`, {actions:['createBoard']})
出现此错误:
responseText:"Cannot GET /1/members/me/boards/fkdsjg412?key=14aeebb47bb7ce6b306894ccf6c5c4cf&token=618302133a76be5f3f631466f1989edcaca4156a92ae2175d0d25aee1065d4c3&actions%5B%5D=createBoard"
好的,解决了:
Trello.rest('POST', `boards`, {name: boardName});
仍然不知道我在原始问题中提到的 actions 参数的作用。