是否有应用程序脚本或应用程序制造商的功能来获取谷歌日历活动的组织者?目前我的程序是由创建者排序作业,但创建者并不总是组织者所以我想知道是否有组织者的字段,或者访问该变量的方式?
答案 0 :(得分:0)
您可以使用Advanced Calendar Service获取活动组织者。
var event = Calendar.Events.get(calendarId, eventId);
console.log(event.organizer.email);
要在App Maker中添加Advanced Service,请转到App Settings -> Advanced Services section -> Add Service button
。