我正在使用Google Calendar Api在Gmail日历中创建活动。该活动创建得很好,我在我的Gmail日历中有它,但我希望与会者收到一封电子邮件来接受或拒绝会议。有谁知道怎么做?
我的后端在nodeJS中编码。
以下是我的活动的特点:
var event = {
'summary': 'Tes Calendar',
'location': 'Auditorium',
"sendNotifications": true,
'description': 'test calendar invitation',
'start': {
'dateTime': '2017-08-31T09:00:00-07:00',
'timeZone': 'America/Los_Angeles'
},
'end': {
'dateTime': '2017-08-31T17:00:00-07:00',
'timeZone': 'America/Los_Angeles'
},
'attendees': [
{'email': '********@symphony.com'},
{'email': '********@gmail.com'},
],
};
谢谢你,祝你有个美好的一天! 玛戈特
答案 0 :(得分:0)
当您调用insert方法时,必须像下面这样放置sendNotifications参数:
var request = gapi.client.calendar.events.insert({
'calendarId': 'primary',
'resource': event,
'sendNotifications' : true
});