0

我的目标是创建一个用户可以在共享表格文件中运行的脚本。该脚本旨在为每个用户创建一个日历并将其分享给我,以便我以后可以使用这个新的日历 ID 推送事件。如果可能,我还想在此脚本运行期间设置全天通知。这是我当前的代码:

function create_calendar_share_back_to_me {
 var calendar = CalendarApp.createCalendar('test1', {
  summary: 'A calendar to store all CRM automated events',
});
Logger.log('Created the calendar "%s", with the ID "%s".',
    calendar.getName(), calendar.getId()); 
}

如你看到的。我被困在共享部分:) 我当然会首先在我的机器上运行它以提供权限。这是否足以允许域中的所有其他用户运行此脚本并在他们自己的用户(而不是我的用户)下创建此日历?谢谢

4

0 回答 0