gpt4 book ai didi

trello - 如何在 API 中获取附加的 Trello 票证的 ID

转载 作者:行者123 更新时间:2023-12-04 18:36:15 26 4
gpt4 key购买 nike

我想以编程方式查找和访问作为票证 A 附件的 trello 票证 B

所以,我有工单 A 的 ID,我通过调用 https://developers.trello.com/reference#cardsidattachments 检索附件

但是,在响应中,如果附件 B 本身是 Trello 卡片,我只会得到 B 的短 URL。

如何获取 B 的 ID,以便我可以使用 https://developers.trello.com/reference#cardsid 检索 B 的详细信息 ?

有没有办法从 shortURL 中获取 B 的 id?

最佳答案

所以基本上你想要的是从 URL 中获取 id。据我所知,这是不可能的。就我而言,我通过这样的另一个请求解决了它。

function main() {
for(let i=0; i<input.length; i++) {
input[i] = input[i][0].slice(0, 29); //takes short url
let target = input[i] + '.json';

let xhr = new XMLHttpRequest();
xhr.open("GET", target);
xhr.addEventListener("readystatechange", function() {
if(this.readyState === this.DONE) {
let json = JSON.parse(this.responseText);
console.log(json['id']);
...

input 是您想要知道其 id 的 Trello URL。

关于trello - 如何在 API 中获取附加的 Trello 票证的 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49645289/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com