我正在尝试使用Microsoft Graphbetaversión获取用户日历活动。 我可以通过此请求获取日历信息:
https://graph.microsoft.com/beta/users/{user}/calendars/{calendarid}
然后我尝试通过此请求访问特定事件
https://graph.microsoft.com/beta/users/{user}/calendars/{calendarid}/events/{eventId}
但是我得到了这个错误代码:
{
"error": {
"code": "NavigationNotSupported",
"message": "Recursive navigation is not allowed after property 'Events' according to the entity schema.",
"innerError": {
"request-id": "2c73c51d-05b0-4499-9420-9247f4c8c576",
"date": "2018-05-23T15:16:44"
}
}
}
这两个请求都适用于Microsoft Graph REST API v1.0
任何帮助?
答案 0 :(得分:0)
获得id
之后获取活动的方式(无论它在哪个日历中)都是这样的:
https://graph.microsoft.com/beta/users/{user}/events/{eventId}