- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个基于 GitHub 的 Trello 同步机器人:https://github.com/fiatjaf/trello-cardsync我正在处理 coffeescript 文件。我查看了 API,我想我知道我需要什么我只是不知道如何准确地编写它,而且我找不到它的任何示例,尤其是在 coffeescript(或 javascript)中。
我希望能够搜索组织板或成员板,然后挑选出某些板 ID,这样我就可以获得我想要的某些板的板 ID 列表,这样我就可以为这些板创建 webhook .
我试过使用 Trello.get("members/me/boards", { fields: "id, name"})
来获取客户端中的所有板 ID 和名称。 js API 'Trello.get(path[, params], success, error)' 但是当我尝试将它打印到控制台时,我的 GET 只返回 unidentified
。我在 settings.coffee
文件中有一组对象来比较名称以选择我想要的板,但我无法在我的文件中获得完整列表。目前我只是在查看链接中的数据:https://trello.com/1/members/my/boards?key=substitutewithyourapplicationkey&token=substitutethispartwiththeauthorizationtokenthatyougotfromtheuserand手动输入 ID 以创建 webhook,但我希望尽可能自动化。
我还查看了 Trello API 中的“GET/1/search”,但我不确定如何在我的 coffeescript 文件中执行此操作。
最佳答案
您需要将回调传递给 Trello.get
。它不返回任何有意义的东西,而是将值传递给回调:
Trello.get("members/me/boards", { fields: "id,name"}, function(err, boards) {
console.log(boards); // got them!
console.log(err); // if something went wrong, this will be non-null
})
关于javascript - 特雷洛 API : how to get board ids of an organisation or member,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31558160/
我是一名优秀的程序员,十分优秀!