node-trello:PUT-方法更新

时间:2014-10-08 19:00:00

标签: javascript node.js trello

我正在尝试更新Trello-Board上的现有卡。我正在使用node.js和node-trello库。以下方法返回'invalid id'错误。即使我通过Postman尝试使用完全相同的ID,但它工作得很好。

client.put("/1/cards/" + destinationID, trelloCard, function(err, data) {
            if (err) throw err;
              console.log(data);
});

trelloCard参数如下所示:

{"desc":"Ticket #107 updated again and again and again"}

任何想法,我做错了什么?

0 个答案:

没有答案