首页 > 解决方案 > 查询可编辑的用户日历会返回不可编辑的日历

问题描述

当查询可编辑的用户日历时,即使用canEdit+eq+trueOData 过滤器子句,我收到的是不可编辑的日历。

下面是 REST 查询端点({userId}替换为任何现有的用户 GUID):

https://graph.microsoft.com/v1.0/users/{userId}/calendars?$filter=canEdit+eq+true

这是响应结果:

{
    "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('{userId}')/calendars",
    "value": [
        {
            "id": "some-id",
            "name": "Jours fériés - France",
            "canEdit": false,
        },
        {
            "id": "some-other-id",
            "name": "Anniversaires",
            "canEdit": false,
        }
    ]
}

在查询反向属性时,即不可编辑的日历,我收到可编辑的日历作为响应负载:

下面是 REST 查询:

https://graph.microsoft.com/v1.0/users/{userId}/calendars?$filter=canEdit+eq+false

以下是响应结果:

{
    "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('{userId}')/calendars",
    "value": [
        {
            "id": "some-id",
            "name": "Calendar",
            "canEdit": true,
        }
    ]
}

请注意,我从两个响应结果中省略了不相关的字段。

是否存在已知问题或我误解了该canEdit属性?

标签: azure-active-directorymicrosoft-graph-apimicrosoft-graph-calendar

解决方案


好吧,这是已知问题

解决方法可以是使用canEdit eq false.

但我有点害怕它。


推荐阅读