如何通过 Microsoft Graph API 检索会议室日历?

Tec*_*ing 5 microsoft-graph-api

我想检索会议室的日历。

为了做到这一点,我使用以下方法

https://graph.microsoft.com/beta/users/meetingroom@mailadress.com/calendarview?endDateTime=2018-02-13T11:06:03&startDateTime=2018-02-12T11:06:03

但是我收到此错误:

{
 "error": {
    "code": "ErrorItemNotFound",
    "message": "The specified object was not found in the store.",
    "innerError": {
        "request-id": "e3401a80-6d31-4ae3-81d3-7a0b43eb7766",
        "date": "2018-02-10T11:16:14"
    }
 }
}
Run Code Online (Sandbox Code Playgroud)

我正在使用 Microsoft Graph Explorer,我在其中配置了以下权限:

- Calendars.Read
- Calendars.Read.Shared 
- Calendars.ReadWrite 
- Calendars.ReadWrite.Shared
Run Code Online (Sandbox Code Playgroud)

我通过 Outlook 应用程序访问会议室日历没有问题。我错过了什么 ?