我想使用Google Calendar API库为Javascript创建活动并向与会者发送电子邮件通知,但我不知道在哪里可以将sendNotifications
可选查询参数设置为{{1} }。
我已经尝试过以下方式,正在创建活动,但通知无效:
true
我在哪里可以将此参数设置为true?
答案 0 :(得分:0)
我的问题非常具体,但我找到了一个更改为REST请求的解决方案,然后我可以将查询参数sendNotifications
设置为true
(以下方式)。
如果有人遇到同样的问题,这里有一个对我有用的选项:
var restRequest = gapi.client.request({
'method': 'POST',
'path': '/calendar/v3/calendars/primary/events',
'params': {'sendNotifications': 'true'},
'body': eventArray
});
restRequest.execute(function(event) {
console.log('Event link: ' + event.htmlLink);
});
现在,当我以编程方式添加事件时,所有与会者都会通过电子邮件收到邀请。 :)
有用的链接: