Graph 我想用所有者属性创建日历

Graph 我想用所有者属性创建日历,graph,calendar,owner,Graph,Calendar,Owner,使用Microsoft graph REST API时,在创建日历时设置了所有者 API响应结果的所有者与设置不一致 URL:graph.microsoft.com/v1.0/me/calendars 请求数据: { "name": "user 02", "color": "auto", "canShare": false, "canViewPrivate

使用Microsoft graph REST API时,在创建日历时设置了所有者

API响应结果的所有者与设置不一致

URL:graph.microsoft.com/v1.0/me/calendars

请求数据:

{
    "name": "user 02",
    "color": "auto",
    "canShare": false,
    "canViewPrivateItems": false,
    "canEdit": false,
    "isTallyingResponses": true,
    "isRemovable": true,
    "owner": {
        "name": "user 02",
        "address": "user02@xxx.onmicrosoft.com"
    }
}
答复数据:

{
    "id": "xxx",
    "name": "user 02",
    "color": "auto",
    "changeKey": "xxx",
    "canShare": true,
    "canViewPrivateItems": true,
    "canEdit": true,
    "allowedOnlineMeetingProviders": [
        "teamsForBusiness"
    ],
    "defaultOnlineMeetingProvider": "teamsForBusiness",
    "isTallyingResponses": false,
    "isRemovable": true,
    "owner": {
        "name": "user 03",
        "address": "user03@xxx.onmicrosoft.com"
    }
}
“user 03”是restapi实现的用户。用户02计划与“用户03”共享

预期响应的“所有者”是“用户02”,但当前结果是“用户03”

我怎样才能满足我的要求


谢谢。

您从哪里获得身份验证令牌?