0

可以通过使用 ms graph api 订阅以下方式来创建Outlook 事件的更改通知。

{
   "changeType": "created,updated,deleted",
   "notificationUrl": "notificationUrl",
   "resource": "Users/xxx169f-xxx-xxxx-afd2-936c51e6xxxx/Events",
   "expirationDateTime":"2016-11-20T18:23:45.9356913Z",
   "clientState": "secretClientValue"
}  

但是我如何以类似的方式获得已授予委派权限的日历的通知?

4

1 回答 1

1

您可以使用 Calendar.Read.Shared GET https://graph.microsoft.com/v1.0/users/adelev@m365x874506.onmicrosoft.com/events验证您是否可以通过 API 访问共享日历

在此示例中,AdeleV 与 MeganB 共享了她的日历。我以 Megan B 的身份登录到 Graph Explorer。https://developer.microsoft.com/en-us/graph/graph-explorer?request=users/adelev@m365x874506.onmicrosoft.com/events&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com

不幸的是,您无法按照此文档页面https://docs.microsoft.com/en-us/graph/outlook-get-shared-events-calendars?view=graph-rest-1.0上的说明订阅事件

注意 共享权限(Calendars.Read.Shared 或 Calendars.ReadWrite.Shared)允许您在共享或委派日历中读取或写入事件。他们不支持订阅以更改此类文件夹中项目的通知。要为租户中的共享、委派或任何其他用户或资源日历中的事件设置更改通知订阅,请使用应用程序权限 Calendars.Read。

于 2019-10-09T21:40:05.690 回答