Hello Vic, I tried the same thing with Apps Script : - a user creates a spreadsheet and shares is with all domain (People can find and view). - I don' t open the spreadsheet with my account. - I create a script to copy the spreadsheet :
var doc = DocsList.getFileById(fileid). //fileid is the key of the spreadsheet var name = doc.getName(); var newName = name + " - " + now.toString(); var newdoc = doc.makeCopy(newName); This works very fine. So I can copy a spreadsheet that is shared with all domain, even if I've never opened it before. Is the API working in a different way than the API used with Apps Script ? Best regards
