Google Apps脚本错误:您无权调用createEvent(第57行,文件"代码")

时间:2018-02-22 06:34:24

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

我正试图通过Google Apps脚本在Google日历中创建活动。当我运行以下行

var event = CalendarApp.getDefaultCalendar().createEvent('Apollo 11 
Landing',
new Date('February 22, 2017 13:00:00 UTC'),
new Date('February 22, 2017 14:00:00 UTC'));

我得到'您无权调用createEvent'。

任何帮助将不胜感激

1 个答案:

答案 0 :(得分:0)

我测试时,您的代码在Apps脚本上完美运行:

function creatCalEvent(){
     var event = CalendarApp.getDefaultCalendar().createEvent('Apollo 11 Landing',new Date('February 29, 2018 13:00:00 UTC'),  new Date('February 30, 2018 14:00:00 UTC')); 
}

我不知道你在哪里放'googleapis.com/auth/calendar'范围,因为我不需要做那样的事情。只需确保您已登录自己的帐户。

截图:

enter image description here