为什么没有通过Google Calendar API将与会者添加到活动中?

时间:2019-07-22 15:02:53

标签: python google-calendar-api

使用Google服务帐户将全天活动添加到日历中。创建活动可以正常进行,但不添加任何与会者。代码很简单,所以我缺少什么?

(以下代码中的“ attrs”已从其他地方拉入并正常工作。)

        body = {
            'summary': attrs['title'],
            'description': "Test Event"
            'start': {
                'date': attrs['due_date'],
            },
            'end': {
                'date': attrs['due_date'],
            },         
            'transparency': 'transparent',
            'attendees': [
                {'email': 'test@example.com'}
            ],  
        }

        event = service.events().insert(
            calendarId=calId,
            body=body
        ).execute()
        logger.info("New event %s created." % event['id'])

1 个答案:

答案 0 :(得分:0)

还要在if venNum.endswith(desNum): # Do what you want to do 参数中添加sendNotifications=True,