我有一个公共日历,我希望用户能够订阅该日历。知道如何订阅或插入现有日历到用户谷歌日历列表?
答案 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()