我可以通过将calendarID添加到脚本中来列出选定的日历事件:
var request = gapi.client.calendar.events.list({
'calendarId': 'primary'
});
这将获得主日历,并通过将"主"切换到所需的日历id
'calendarId': '?????????????????@group.calendar.google.com'
但我想做的是列出所有日历中的所有事件,所以有没有办法像下面这样为EG:做这件事
'calendarId': 'ALL'
primary
是文档指定的唯一特殊值。如果日历API确实支持这样一个特殊值,则它不受公共支持,并且可以随时删除或更改。
您的最佳选择是使用calendar.calendarList.list方法来获取所有用户日历的列表,并列出每个用户日历中的事件。