如何检索 eventMessage 的事件

How do I retrieve the event for an eventMessage

Graph API v1.0 文档指出 eventMessage 资源类型具有称为 event 的关系,应该 return

The event associated with the event message.

完整文档在这里:

eventMessage resource type

我会将此解释为请求具有 URL 的资源的能力,例如:

https://graph.microsoft.com/v1.0/me/messages/<message id>/event

与访问附件关系的方式相同,即

https://graph.microsoft.com/v1.0/me/messages/<message id>/attachments

但是,这似乎不起作用。相反,我在响应中收到以下错误:

{
    "error": {
        "code": "BadRequest",
        "message": "Resource not found for the segment 'event'.",
        "innerError": {
            "request-id": "f3203560-0e35-4575-a34c-2a2a884f551a",
            "date": "2016-07-13T09:58:58"
        }
    }
}

我是否发送了错误的请求?文档有错吗?有错误吗?

希望有大佬指点一下,先谢谢了!

目前您只能通过 URL 中的 $expand 参数访问 event 属性。所以你可以这样做:

https://graph.microsoft.com/v1.0/me/messages/<message id>/?expand=
Microsoft.Graph.EventMessage/Event

或者,如果您使用的是 Outlook API 端点,则类似于:

https://outlook.office.com/api/v2.0/me/messages/<message id>/?expand=
Microsoft.OutlookServices.EventMessage/Event

我们在路线图上对此进行了简化,但这是目前的工作方式。