使用“events.update()”函数不发送通知“参加者”,使用iCalUID日历的“导入”后,谷歌日历API
仅供参考 - old_event是“service.events().get() response instance
”从不同的邮件地址[email protected]事件捕获。
new_event = old_event.copy()
new_event['organizer'] = {
'self': True,
'email': '[email protected]'
}
imported_event = new_service.events().import_(
calendarId='primary',
body=new_event
).execute()
updated_event_body = imported_event.copy()
updated_event_body['summary'] = 'New Summary'
updated_event = new_service.events().update(
calendarId='primary',
eventId=updated_event_body['id'],
sendNotifications=True,
body=updated_event_body
).execute()
请找使用此Link上引擎收录的代码片段