如何解决日历同步-安装onEventUpdated触发器 这似乎是一个错误!
主题:我遇到了我不了解的问题;如果在脚本编辑器中手动执行此代码,则可以运行此代码:
ScriptApp.newTrigger('functionname').forUserCalendar('usercalendar').onEventUpdated().create()
但是,当我从清单安装应用程序并尝试从用户角度运行相同的代码时,出现错误消息“异常:很抱歉,发生服务器错误。请稍等,然后重试。[行:15,功能:installTrigger,文件:Code]“
上下文:我正在与客户合作,为Google日历设置会议扩展。
其中的一部分工作是使用户的日历更改保持服务器的最新状态-如果我在上午10点召开会议,但是在最后一刻将其更改为上午11点,则服务器需要知道!
文档中实际上有一节:https://developers.google.com/gsuite/add-ons/calendar/conferencing/sync-calendar-changes。这个想法是附加组件安装一个触发器,该触发器在事件得到更新时运行。您需要进行一些过滤以确保您仅发送相关数据,但这是广泛的机制。我简直无法复制在onEventUpdated触发器上创建日历的功能!
为演示此问题,我将代码精简到下面。此代码使带有按钮的边栏在Google日历中可用。单击按钮时,它应在代码中指定的日历上安装onEventUpdated触发器。
Code.gs:
//Attempting to install an onEventUpdated - it appears I can't use 'forUserCalendar' when installing as a user,but can when I manually select 'installTrigger()' function in the code editor?
//Functionality/scopes based on those demonstrated here:
//https://developers.google.com/gsuite/add-ons/calendar/conferencing/sync-calendar-changes
//https://developers.google.com/gsuite/add-ons/calendar/conferencing/conferencing-sample?hl=fr#add-on-manifest
function onHomePageOpen(e) {
let newButton = CardService.newTextButton().setText('Try install sync').setonClickAction(CardService.newAction().setFunctionName('installTrigger'))
let card = CardService.newCardBuilder()
.setHeader(CardService.newCardHeader()
.setTitle("<h1>Test install sync</h1>"))
.addSection(CardService.newCardSection().addWidget(newButton))
.build()
return card
}
function installTrigger(e) {
var triggerBuilder = ScriptApp.newTrigger('syncupdate');
var triggerBuilder2 = triggerBuilder.forUserCalendar('<<YOUR EMAIL IN HERE>>').onEventUpdated().create()
console.log('triggerBuilder2',triggerBuilder2)
}
function syncupdate() {
console.log('triggered on update of an event!');
}
manifest.json
{
"timeZone": "Pacific/Auckland","dependencies": {},"oauthScopes": [
"https://www.googleapis.com/auth/calendar","https://www.googleapis.com/auth/calendar.readonly","https://www.googleapis.com/auth/calendar.events","https://www.googleapis.com/auth/calendar.events.readonly","https://www.google.com/calendar/Feeds","https://www.googleapis.com/auth/script.locale","https://www.googleapis.com/auth/calendar.addons.current.event.read","https://www.googleapis.com/auth/calendar.addons.execute","https://www.googleapis.com/auth/calendar.addons.current.event.write","https://www.googleapis.com/auth/script.scriptapp"
],"exceptionLogging": "STACKDRIVER","runtimeVersion": "V8","addOns": {
"common": {
"name": "Test Install Sync","logoUrl": "https://www.gstatic.com/companion/icon_assets/tasks2_2x.png","layoutProperties": {
"primaryColor": "#123763","secondaryColor": "#1a73e8"
},"useLocaleFromApp": true
},"calendar": {
"homepageTrigger": {
"runFunction": "onHomePageOpen"
},"currentEventAccess": "READ_WRITE"
}
}
}
解决方法
这似乎是一个错误!
我已经对此进行了自我测试,看来无论提供的日历ID是硬编码的字符串"user@example.com"
,从Session.getActiveUser().getEmail()
检索还是使用关键字"primary"
,该错误仍然存在。
我确信您已经知道了,但是对于将来的读者来说,已经有关于Google问题跟踪工具的报告,其中详细介绍了相同的行为:
Google似乎确实了解此问题(在撰写此答案时已分配了该问题)。有趣的是,这似乎是过去here的报道,但已标记为在2020-08-03修复。
如果您还没有的话,我建议您在两个先前链接的错误的左上角打上问题编号旁边的☆,因为这样可以使Google知道更多人正在遇到此错误,因此更有可能被看到更快。
我知道这通常是个坏消息,但我希望这对您有帮助!
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。