Google Drive API v3-将文档转换为pdf

时间:2019-02-10 23:58:05

标签: node.js google-api google-drive-api

我正在尝试将Google Doc文件转换为pdf。

我尝试将files.copy方法与资源中的mimeType一起使用,如其“迁移到Google Drive v3” documentation中所建议的那样。但这是行不通的:它无需复制即可制作简单的副本。似乎从未考虑过mimeType ...

gapi.client.drive.files.copy({
  name: 'My new PDF',
  fileId: sourceId,
  parents: [destinationId],
  mimeType: 'application/pdf'
})

(注意:我正在尝试在浏览器中执行此操作)

我也尝试过'text / plain',但也没有改变。

更新

在复制方法期间进行转换似乎只能转换为Google特定的mimeType(文档,表格等)

1 个答案:

答案 0 :(得分:1)

认为它更像是gapi.client.drive.files.export

gapi.client.drive.files.export({fileId: sourceId, mimeType: "application/pdf"});