用于查找或返回Google日历活动管理器的功能?

时间:2018-04-09 20:06:19

标签: google-apps-script google-api google-app-maker google-calendar-api

是否有应用程序脚本或应用程序制造商的功能来获取谷歌日历活动的组织者?目前我的程序是由创建者排序作业,但创建者并不总是组织者所以我想知道是否有组织者的字段,或者访问该变量的方式?

1 个答案:

答案 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