trello api 自定义标签创建

trello api custom labels creation

我遵循了自定义标签的 Trello API 文档,但 id 不起作用

我正在使用 ruby-trello gem

  label_data = {
    'name' => "testing",
    'idBoard' => board,
    'color' => "green"
  }

  label = client.post("/labels", label_data)

标签创建成功,我在看板中看到了它,但是当我使用创建错误的格式并将标签 id 传递给 idLabels attr 时,它创建了没有标签的卡片。

使用此 hack 而不是常规 api

label_response = client.post("/cards/#{card.id}/idLabels",{value: label_id})