在发行上使用“events.update()”函数的“与会者”谷歌日历API发送通知,使用iCalUID日历的“进口”后?

问题描述 投票:0回答:1

使用“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上引擎收录的代码片段

python django google-api google-calendar-api google-api-python-client
1个回答
0
投票

sendNotifications已过时,你应该使用sendUpdates代替。

看看这个帖子

Google Calendar PHP API Not Sending Invite Emails

© www.soinside.com 2019 - 2024. All rights reserved.