编程语言
首页 > 编程语言> > javascript-如何使用Google Apps脚本删除事件并发送电子邮件

javascript-如何使用Google Apps脚本删除事件并发送电子邮件

作者:互联网

 function modifyevent(eventid,cal){
  var event = cal.getEventById(eventid);
  event.deleteEvent();
 }

这可以正常工作,但不发送电子邮件.您是否还有另一种使用GOOGLE应用脚本的方法.我想删除该事件并向参与者发送电子邮件,即使他们使用的是Outlook等日历,也要从他们的日历中删除该事件.

如果可以提供帮助,这就是我创建事件的方式:

function createEvent(date,start,end,summary,location,email,calendarId,incrementligne,ss){  
var newdatestart = new Date(date.getYear(), date.getMonth(), date.getDate(), start.getHours(), start.getMinutes(), "0", "0");
var newdateend = new Date(date.getYear(), date.getMonth(), date.getDate(), end.getHours(), end.getMinutes(), "0", "0");    
var invitelist = email.split(',');
var longueur = invitelist.length;
var event = {
summary:summary,
location: location,
description: '',
start: {dateTime: newdatestart.toISOString()},
end: {dateTime: newdateend.toISOString()},
attendees: [
{email: ''},{email: ''}],
// Red background. Use Calendar.Colors.get() for the full list.
colorId: 11
};
for(var i=0; i < invitelist.length;i++){
event.attendees.push({email: invitelist[i]});
}

解决方法:

在脚本编辑器中,转到“查看”-“显示清单文件”.在“ appscript.json”中,添加以下范围:

 "oauthScopes": ["https://www.googleapis.com/auth/calendar",             
   "https://www.googleapis.com/auth/script.external_request"]

转到“资源-> “云平台项目”.单击您的项目名称以在GCP上打开项目页面.在页面顶部的搜索框中输入“日历API”.在Calendar API页面上单击“启用”.

最后,使用UrlFetchApp调用Calendar API端点.需要注意的一件事是,您需要修改CalendarEvent.getId()返回的字符串,以获取不带’@ google.com’部分的实际标识符.我已经测试了以下代码-包括通知在内的所有内容都可以正常运行.

 function deleteEvent(eventId) {

 var baseUrl = "https://www.googleapis.com/calendar/v3/calendars/{calendarId}/events/{eventId}?sendNotifications=true";
 var calendarId = CalendarApp.getDefaultCalendar().getId();
 eventId = eventId.substr(0, eventId.indexOf("@"));

 var url = baseUrl.replace("{calendarId}", calendarId).replace("{eventId}", eventId);

  var options = {

    "method": "DELETE",
    "headers": {"Authorization":"Bearer " + ScriptApp.getOAuthToken()},
    "muteHttpExceptions": true

  };

  var res = UrlFetchApp.fetch(url, options).getContentText();  
  Logger.log(res);    


}

标签:google-apps-script,javascript,java
来源: https://codeday.me/bug/20191109/2011694.html