我在谷歌应用脚本中使用服务帐户,因此我无法使用普通的谷歌应用脚本API。
所以我使用驱动器休息api进行创建,移动,复制等,但我可以使用其余的api上传文件。它上传文件但没有内容或内容错误。
这是我的代码:
var contentType = data.substring(5, data.indexOf(';')),
bytes = Utilities.base64Decode(data.substr(data.indexOf('base64,') + 7)),
blob = Utilities.newBlob(bytes, contentType, file);
var service = getService();
if (service.hasAccess()) {
var url = 'https://www.googleapis.com/upload/drive/v3/files?uploadType=media';
var data = {
name: name,
mimeType: "application/pdf",
parents: [parent]
};
var options = {
method: 'post',
contentType: 'application/json',
body: blob ,
payload: JSON.stringify(data),
muteHttpExceptions: true,
headers: {
Authorization: 'Bearer ' + service.getAccessToken()
}
};
var response = UrlFetchApp.fetch(url, options);
var result = JSON.stringify(response.getContentText());
Logger.log(JSON.stringify(result, null, 2));
return result["id"];
} else {
Logger.log(service.getLastError());
}
由于
答案 0 :(得分:0)
使用Drive API上传文件时,您需要使用files.create方法。您可以在Basic uploads中查看使用它的javascript代码参考。另请注意,App Script uploading files使用的是驱动器v2版本的files.insert而不是files.create。