简介: 爱丽丝准备了绑定到Google表格的应用脚本。该脚本从Google表格生成Google文档。该文档存储在爱丽丝的Google云端硬盘中。如果Alice生成了新的Google文档,则旧的文档将被删除。为此使用了以下代码。
function delteFile(myFileName) {
var allFiles, idToDLET, myFolder, rtrnFromDLET, thisFile;
myFolder = DriveApp.getFolderById("folder_id_is_here");
allFiles = myFolder.getFilesByName(myFileName);
while (allFiles.hasNext()) {
thisFile = allFiles.next();
idToDLET = thisFile.getId();
rtrnFromDLET = Drive.Files.remove(idToDLET); // API call to drive.files.delete failed with error: Insufficient permissions for this file
};
};
Alice与Bob在Google Cloud Platform上共享了该项目。
对drive.files.delete的API调用失败,并出现以下错误:该文件的权限不足
在这种情况下,爱丽丝可以成功执行以上代码。
问题: 该项目在Google Cloud Platform上共享。爱丽丝还需要分享什么?