我有自定义插件的谷歌电子表格模板,我正在尝试复制
def copyTemplateSpreadsheet(Drive driveService) {
File templateCopy = new File()
templateCopy.setName("excel-template")
def copiedFile = driveService.files().copy(templateSpreadsheetId, templateCopy).execute()
setCorrectPermission(driveService, copiedFile.getId())
copiedFile
}
private void setCorrectPermission(Drive driveService, def fileId) {
Permission newPermission = new Permission();
newPermission.setType("anyone");
newPermission.setRole("writer");
driveService.permissions().create(fileId, newPermission).execute();
}
问题是复制的电子表格已打破加载项(未在附加组件菜单中显示)。脚本编辑器中有正确的附加代码,但是当我尝试运行任何函数时,我收到错误消息
"We're sorry, a server error occurred. Please wait a bit and try again"
请记住,完全相同的代码在我的模板电子表格中运行良好。即使我删除所有代码并留空onOpen函数,错误仍然会出现。
当我使用常规google驱动器网站(drive.google.com)进行复制时,复制加载项效果很好,并且当我尝试使用google的API Explorer(https://developers.google.com/drive/v3/reference/files/copy#try-it)时也能正常工作。问题似乎只有在使用sdk时(至少是java一个 - 我没有尝试过任何其他的)
另请注意,我正在使用按照本文https://developers.google.com/identity/protocols/OAuth2ServiceAccount#creatinganaccount
中所述创建的Google服务帐户并使用以下代码创建Drive实例
Drive getDriveService() throws GeneralSecurityException, IOException, URISyntaxException {
HttpTransport httpTransport = new NetHttpTransport();
JacksonFactory jsonFactory = new JacksonFactory();
GoogleCredential credential = new GoogleCredential.Builder()
.setTransport(httpTransport)
.setJsonFactory(jsonFactory)
.setServiceAccountId(G_SERVICE_EMAIL)
.setServiceAccountScopes(Arrays.asList(DriveScopes.DRIVE))
.setServiceAccountPrivateKeyFromP12File(PKC_12_FILE)
.build();
Drive service = new Drive.Builder(httpTransport, jsonFactory, null)
.setHttpRequestInitializer(credential)
.build();
return service;
}
不确定它是否重要,特别是因为其他一切似乎都很好用
任何修复想法?只要他们工作,我就会接受任何解决方法。 我也可以创建新文件并添加附加代码,但似乎我无法使用API
答案 0 :(得分:1)
我找到了一个我在那里描述的可接受的解决方案 How can I create spreadsheet with included gs script by API?
希望它可以帮到某人;)
答案 1 :(得分:0)
在How can I create spreadsheet with included gs script by API?中发表评论后,这是用于进行经过身份验证的POST的应用Scripts解决方案:
function sendToHR(url,data){
var forDriveScope = DriveApp.getStorageUsed(); //needed to get Drive Scope requested
var dataToSend = [getName(),getID()];
for(key in data){
dataToSend.push(data[key])
}
var paylod = {
"data" : dataToSend
};
paylod = JSON.stringify(paylod);
var param = {
"method":"POST",
"headers" : {"Accept":"application/json","Authorization": "Bearer " + ScriptApp.getOAuthToken()},
"payload": paylod
};
return UrlFetchApp.fetch(url,param).getContentText();
}
我在python中有一个例子,对你来说可能更有用,为了让python脚本作为certien用户执行,我用项目控制台中的键下载了一个JSON文件 - >创建凭证 - >获取密钥并下载文件
def get_service(): 全球http_auth global delegated_credentials
scopes = ['https://www.googleapis.com/auth/userinfo.email']
keyfile = os.path.join(CURR_DIR, JSON_FILENAME)
credentials = ServiceAccountCredentials.from_json_keyfile_name(
keyfile, scopes=scopes)
delegated_credentials = credentials.create_delegated(ADMIN_EMAIL)
http_auth = delegated_credentials.authorize(Http())
return build('SERVICE', 'v1', http=http_auth,
discoveryServiceUrl='DISCOVERY API SERVICE')
ADMIN_EMAIL是实际的管理员电子邮件地址,CURR_DIR和JSON_FILENAME与您下载的文件有关我猜您不需要管理员权限只需从当前项目的控制台下载JSON文件并使用您的电子邮件地址。我在使用发现API时工作,但常规POST应该更快一点