Office365 富通知Microsoft图形

Office365 富通知Microsoft图形,office365,microsoft-graph-api,webhooks,Office365,Microsoft Graph Api,Webhooks,我想使用Microsoft graph API为日历事件订阅丰富的通知。 下面是我用来进行订阅呼叫的有效负载: { "changeType": "created,updated,deleted", "notificationUrl": "https://notification.com/api/webhook", "resource": "Users('room_mailbox@abc.com')/events?$select=subject,start,end,orga

我想使用Microsoft graph API为日历事件订阅丰富的通知。 下面是我用来进行订阅呼叫的有效负载:

{
    "changeType": "created,updated,deleted",
    "notificationUrl": "https://notification.com/api/webhook",
    "resource": "Users('room_mailbox@abc.com')/events?$select=subject,start,end,organizer",
    "expirationDateTime": "2018-12-06T18:23:45.9356913Z",
    "clientState": "secretClientValue"
}
我得到的答复是:

{
"error": {
    "code": "InvalidRequest",
    "message": "IncludeProperties flag should be true in payload to support rich notifications.",
    "innerError": {
        "request-id": "b281f496-6121-40d0-9f48-452922170598",
        "date": "2018-12-06T09:32:46"
    }
}
}

使用有效载荷:

{
    "changeType": "created,updated,deleted",
    "notificationUrl": "https://notification.com/api/webhook",
    "resource": "Users('room_mailbox@abc.com')/events,
    "expirationDateTime": "2018-12-06T18:23:45.9356913Z",
    "clientState": "secretClientValue", 
    "includeProperties" : true
}
我成功创建了订阅,但在通知中获得了默认数据


我使用outlook v2 API使用了丰富的通知。但找不到有关Microsoft Graph API的任何文档。

通过Microsoft Graph的日历事件尚不支持丰富的通知


我们将改进错误消息。

通过Microsoft Graph的日历事件尚不支持丰富的通知


我们将改进错误消息。

我不明白。添加
includeproperty:true
时,为什么要删除
$select=subject、start、end、organizer
?我不明白。为什么要删除
$select=subject,start,end,organizer
当您添加
includeProperties:true
时?错误消息现在得到改进:我们提到Exchange还不支持丰富通知。microsoft graph订阅中是否有关于丰富通知支持的更新?错误消息现在得到改进:我们提到Exchange不支持丰富通知Exchange尚未启动。microsoft graph订阅中是否有关于丰富通知支持的更新?