gpt4 book ai didi

javascript - 将文档添加到父文件夹?

转载 作者:太空宇宙 更新时间:2023-11-04 00:58:14 24 4
gpt4 key购买 nike

如何将此文档添加到父文件夹?以下内容不起作用。

drive.files.insert({
convert: true,
parents: [
{
"id":parentId
}
],
resource: {
title: title,
mimeType: 'text/csv',
},
media: {
mimeType: 'text/csv',
body: body,
}
}, function(){
console.log(arguments)
})

最佳答案

尝试:

    drive.files.insert({
resource: {
title: title,
mimeType: 'text/csv',
parents: [ { id: parentId } ]
},
media: {
mimeType: 'text/csv',
body: body
},
}, function(err, resp) {});

看起来文档可能已更改: https://github.com/google/google-api-nodejs-client/issues/96

关于javascript - 将文档添加到父文件夹?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28568346/

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