如何使用Trello的API打开新的主板

时间:2017-01-24 10:00:47

标签: javascript api trello

来自APITrello 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"

1 个答案:

答案 0 :(得分:1)

好的,解决了它:

 Trello.rest('POST', `boards`, {name: boardName});

仍然不知道我在原始问题中提到的操作参数是什么。