使用GuestsCanModify设置为true的Google Calendar Script创建活动?

时间:2013-09-20 13:40:55

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

我设法让脚本工作以从谷歌电子表格中获取值并创建日历事件。我可以添加客人,但我无法弄清楚如何允许客人可以修改状态。我可以设置像位置和来宾这样的高级参数。在创建事件时如何在事件上设置它?

由于

1 个答案:

答案 0 :(得分:0)

您正在寻找的方法是CalendarEvent.setGuestsCanModify()

  ....
  var event = cal.createEvent(title, start, end, {
      description : desc,
      location : loc
  });

  event.setGuestsCanModify(true);
  ....