Trello API 方向每次都会让我出错

Trello API directions lead me to error every time

我正在尝试使用 cURL 自动执行 json 导出。我按照他们的指示找到 here

我按照他们在第 1 步中的指示并使用此请求开始导出

curl -X POST 'https://trello.com/1/organizations/{organizationNameOrId}/exports?key={key}&token={token}' --data 'attachments=false'

这会启动导出并给我与他们示例中相同的输出。然后我转到第 2 步。我按照他们的指示使用此请求

curl https://trello.com/1/organizations/{orgIdOrName}/exports/{exportId}?key={key}&token={token}

但我没有得到与他们相同的输出,而是收到一条消息

can't read the state of an export

然后当我按回车键时我得到

[1] random number 
 Done "then a bunch of empty space" + my original request in step 2 minus the token

还有其他人遇到过这个问题吗?我似乎无法在任何地方找到它

想通了。他们在第 2 步中缺少 url 周围的撇号。它应该是

curl 'https://trello.com/1/organizations/{orgIdOrName}/exports/{exportId}?key={key}&token={token}'