我正在使用Microsoft Graph Explorer(https://graph.microsoft.io/en-us/graph-explorer)我在尝试获取用户日历时遇到了问题 . 根据文档,我应该能够看到给定用户的日历https://graph.microsoft.io/en-us/docs/api-reference/v1.0/api/user_list_calendars

我的要求是

https://graph.microsoft.com/v1.0/users/{user_id}/calendar

其中 {user_id} 是有效的用户ID

并收到以下错误:

Status Code: 500

{
    "error": {
        "code": "ErrorInternalServerTransientError",
        "message": "An internal server error occurred. Try again later.",
        "innerError": {
            "request-id": "fcebf782-a028-45aa-9c54-57cbce3e0c29",
            "date": "2017-01-06T16:24:35"
        }
    }
}