このドキュメントを親フォルダーに追加するにはどうすればよいですか? 以下は動作しません。
drive.files.insert({
convert: true,
parents: [
{
"id":parentId
}
],
resource: {
title: title,
mimeType: 'text/csv',
},
media: {
mimeType: 'text/csv',
body: body,
}
}, function(){
console.log(arguments)
})