gpt4 book ai didi

javascript - Google Drive API 获取缩略图

转载 作者:行者123 更新时间:2023-12-01 03:23:11 25 4
gpt4 key购买 nike

我想获取 Google Drive 为存储的 pdf 文件创建的缩略图。通过此功能,我列出了所有文件:

  listFiles: function (folderId, onData, onError) {

drive.files.list({
auth: jwtClient,
q: "'" + folderId + "' in parents"
}, function (err, res) {
console.log(res.files)
}
});

每个文件的控制台日志输出如下所示:

{ 
kind: 'drive#file',
id: '0BapkdhpPsqtgf01YbEJRRlhuaVUf',
name: 'file-name.pdf',
mimeType: 'application/pdf'
}

当我检查谷歌的文档时,它说文件的元数据应该包含所有这些属性:https://developers.google.com/drive/v3/reference/files我在那里发现:contentHints.thumbnail.image我如何访问它?

最佳答案

好吧,问题是要获取我需要使用 files.get 函数而不是 files.list 的文件的元数据 。还有一点就是,在调用的时候,需要设置字段参数。例如:

drive.files.get({
auth: jwtClient,
fileId: fileId,
fields : "thumbnailLink"
})

关于javascript - Google Drive API 获取缩略图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45013552/

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