Trello API - 创建新卡片 - 名称

Trello API - Create a new Card - name

我正在尝试使用 Trello API 在 JavaScript 中创建一张新卡片。我有这个:

const fetch = require('node-fetch');
fetch(`https://api.trello.com/1/cards?key=${key}&token=${token}&idList=${listId}&desc=test&name=${name}`, {
method: 'POST'
})

有效。但是如果名字是 test#1 它只会保存 test。我该如何解决这个问题?

您需要先进行编码。 前任- “John#1”将被编码为“John%231”

您可以查看此站点 -> https://www.urlencoder.org/