现有的问题已经有了答案;然而,答案来自一位微软开发人员并写道:“我们正在努力支持您要求的方案......”并继续提供一种似乎无法回答我的问题的方法。
原创文章:Using Microsoft graph to read all users calendars
我的问题是,是否可以订阅所有邮箱或日历,而不是订阅单个用户的邮箱或日历?
我的应用程序需要收听日历会议的创建/更新/删除事件,并将它们插入到SharePoint列表中。
POST https://graph.microsoft.com/v1.0/subscriptions
Content-type: application/json
{
"changeType": "created,updated",
"notificationUrl": "https://webhook.azurewebsites.net/api/send/myNotifyClient",
"resource": "me/mailFolders('Inbox')/messages",
"expirationDateTime":"2016-11-20T18:23:45.9356913Z",
"clientState": "subscription-identifier"
}
参考文献: