Asana API-获取工作区中的所有附件(+ view_url参数)

时间:2018-09-24 23:06:31

标签: node.js asana asana-api

我想知道是否有一种方法可以获取Asana工作区的所有附件view_urls。我工作的公司正在寻找一份Asana附件的清单,以确保应该在适当的文件存储(即Google云端硬盘)中保存的所有内容不会在完成的Asana任务中丢失。

我一直在参考Asana API文档,但是这似乎并不是特别常见的事情-我希望这不是不可能的(或者非常耗时)。

我一直在通过cURL访问API,这对于简单的调用非常有用,但是我发现它对详细的请求有一定的限制。

节点包装器使某些调用更加容易(例如,根据受让人检索所有任务);但是在附件方面有很大的限制。

我一直在尝试进行概念验证,但是运气不高。

当前节点实现如下:

let asana = require("asana")
let client = 
asana.Client.create().useAccessToken('0/##########################(this 
is properly populated, normally))

client.users.me()
  .then(user => {
    const userId = user.id;

    const workspaceId = user.workspaces[0].id;
    //this part works fine
    return client.tasks.findAll({
        workspace: workspaceId,
        assignee: userId,
        opt_fields: 'id,name'
    });
  })
  .then(response => {
    //this is working as expected
    console.log(response.data)
    //this is working as expected too...
    let taskArray = response.data
    taskArray.forEach(task => {
        console.log(task.id)
    })
    return taskArray.id
  }
).catch(e => {
    console.log(e.value.errors)
})

这会反馈我之前一直在运行的taskId数组:

tasks.forEach(task => {
    client.attachments.findByTask(task.id)
    .then(response => {
        console.log(response.data)

        return client.attachments.findById(response.data.id, {
            // I can't seem to retrieve the urls...
            opt_fields: 'view_url,download_url'
        })
    }).then(response => {
        console.log(response.data)
    }) 
})

1 个答案:

答案 0 :(得分:0)

弄清楚了-正在做很多我上面发布的迭代中不需要做的事情。最终,仍然需要手动完成一些工作-但没有什么特别耗时的。这是有效的方法:

client.users.me()
.then(user => {
    const userId = user.id;

    const workspaceId = user.workspaces[0].id;
    //this part works fine
    return client.tasks.findByProject(support, {
        opt_fields: 'id,name'
    });
})
.then(collection => {
    //this is working as expected too...
    let taskArray = collection.stream().on('data', task => {
        console.log(task.id)
        client.attachments.findByTask(task.id, {
            opt_fields: 'id, view_url, download_url, permanent_url'
        }).then(attachment => {
            console.log(attachment.data)
            return attachment.data
        })
        })
    return taskArray.json()
}
).then(tasks => {
    console.log(tasks.permanent_url)
}


).catch(e => {
    console.log(e.value)
})