EWS api 约会 class 与图形事件 class

EWS apis appointment class vs Graph Event class

我正在尝试从 EWS Apis 迁移到 Microsoft Graph Apis 并尝试重构我的代码。这是我的疑问:

在我的应用程序中,所有 create/update/get 会议同步功能目前都是使用 "microsoft.exchange.webservices.data.core.service.item.Appointment" class 实现的,但是自从约会 class in graph 仍处于 beta 版本,无法在生产中使用。

所以我已经开始使用 "com.microsoft.graph.models.extensions.Event" class.

实现所有功能

我不确定两者之间的区别,也不知道它可能对我的应用程序产生的影响。

关于差异和影响的解释会非常helpful.Thanks提前。

event resource in Graph is the equivalent of the Appointment item in EWS. There is no appointment resource in Graph. There is a bookingAppointment resource in beta, but that is specific to small businesses using a booking service.

简而言之,您应该迁移代码以使用 event 资源。