4

如何从 powerup 中查询 trello API?这似乎是一个显而易见的问题,但我似乎无法找到它。

到目前为止,我的简单上电看起来像这样:

var boardButtonCallback = function(t){
  return t.popup({
    title: 'Tools',
    items: [
      {
        text: 'Hide Duplicates',
        callback: function(t){

          var cardQueryCb = function(result){
            console.log(result);
          }
          var cardQ = 'https://trello.com/1/boards/[board_id]/cards/all';
          fetch(cardQ).then(function(response) {
            return response.json();
          }).then(function(data) {
            console.log(data);
          });

          return t.cards('id', 'name')
          .then(cardQueryCb);
        }
      }
    ]
  });
};

TrelloPowerUp.initialize({
  'board-buttons': function(t, options){
    return [{
      text: 'Duplicates',
      callback: boardButtonCallback
    }];
  }
});

调用 fetch 后的响应对象表示该调用是未经授权的。

我会认为从加电上下文中调用此代码将被视为已授权。当我登录到 trello 时,我可以将该地址放入我的浏览器并获得有效响应 - 为什么 javascript 调用也不会产生有效响应?

更重要的是,我怎样才能从该 URL 获得成功的响应?

4

1 回答 1

2

由于您的启动是通过 iframe 运行的,它实际上并不是来自 Trello 页面本身,因此您需要在 GET URL 中指定您的 API 密钥和令牌。

例子:

https://api.trello.com/1/boards/560bf4298b3dda300c18d09c?fields=name,url&key={YOUR-API-KEY}&token={AN-OAUTH-TOKEN}

获取 API 密钥和令牌的信息可以在这里找到:https ://trello.readme.io/v1.0/reference#api-key-tokens

于 2017-09-11T15:11:14.777 回答