我创建了一个具有所有所需权限的应用程序。
我可以使用 beta 端点创建一个事件:
https://graph.microsoft.com/beta/users/xyz@test.com/calendars/XXX/events/YYY
但是当我尝试更新它时出现错误:
{
"code": "NavigationNotSupported",
"message": "Recursive navigation is not allowed after property 'Events' according to the entity schema.",
"innerError": {
"request-id": "9dd2afea-219a-436d-bd27-e73a7407dfab",
"date": "2019-09-27T07:49:35"
}
}
此外,我可以使用 v1.0 端点更新此事件:
https://graph.microsoft.com/v1.0/users/xyz@test.com/calendars/XXX/events/YYY
Microsoft Graph 测试版中是否存在问题或我遗漏了什么?