使用Python订阅公共Google日历

时间:2016-10-21 13:59:04

标签: python google-api google-calendar-api google-api-python-client

我有一个公共日历,我希望用户能够订阅该日历。知道如何订阅或插入现有日历到用户谷歌日历列表?

1 个答案:

答案 0 :(得分:0)

您可以使用CalendarList:insert方法执行此操作: https://developers.google.com/google-apps/calendar/v3/reference/calendarList/insert

my_calendar_id = 'some calendar id'
calendar_list_entry = {
    'id': my_calendar_id
}

created_calendar_list_entry = service.calendarList().insert(body=calendar_list_entry).execute()