Microsoft Graph API: can't list recurring events of a meeting room

夙愿已清 提交于 2019-12-01 02:15:27

问题


I'm building a Ruby on Rails app where the events within an organization are grouped & shown by the meeting rooms using the Microsoft Graph API with the app only authorization flow described in the below link.

http://graph.microsoft.io/docs/authorization/app_only

I am using the following request to list the events of a meeting room

https://graph.microsoft.com/v1.0/users/<meeting room email>/events

But the thing is that not all the events are being listed for the upcoming weeks and I suppose those are the recurring events.

Is there any way to include the recurring events into the results.

I'd be glad if someone could help.

Thanks in advance


回答1:


I found the solution, calendarView method is listing all events for a given time range in ISO 8601 format

https://graph.microsoft.com/v1.0/users/<meeting room email>/calendarView/?endDateTime=2015-12-28T22:23:00Z&startDateTime=2015-12-28T00:00:00Z

List calendarView Reference



来源:https://stackoverflow.com/questions/34473829/microsoft-graph-api-cant-list-recurring-events-of-a-meeting-room

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!