问题描述
- 在documentation link之后,我可以使用此网址获取今年的活动。
https://graph.microsoft.com/v1.0/me/calendarview?startDateTime=2020-01-01T00:00:00&endDateTime=2021-01-01T00:00:00
https://graph.microsoft.com/v1.0/me/calendarview?startDateTime=2020-01-01T00:00:00&endDateTime=2021-01-01T00:00:00&$filter=lastModifiedDateTime%20gt%202020-10-01T00:00:00z
- 我也documentation link使用了这种方式
https://graph.microsoft.com/v1.0/me/calendarView/delta?startDateTime=2020-01-01T00:00:00&endDateTime=2021-01-01T00:00:00&lastModifiedDateTime%20gt%202020-10-01T00:00:00z
,但它会返回一年中的所有事件,并且不会按lastModifiedDateTime进行过滤。
是否有任何适当的方法来获取在特定日期之后修改或创建的日历事件?
解决方法
貌似calendarView无法与过滤器一起正常工作,可行的替代方法是过滤器列表事件Documentation Link
有效的网址如下:https://graph.microsoft.com/v1.0/me/calendar/events?$filter=lastModifiedDateTime%20gt%20" + date + "z"