Microsoft graph api findMeetingTimes API权限问题

Microsoft graph api findMeetingTimes API权限问题,microsoft-graph-api,microsoft-graph-calendar,Microsoft Graph Api,Microsoft Graph Calendar,我一直在尝试访问findMeetingTime API,但每次尝试访问findMeetingTime API时,都会出现错误。我的应用程序具有允许的权限(委托) 我对下面的内容感到困惑,现在支持的应用程序意味着什么 权限类型权限(从最低权限到最高权限) 委托(工作或学校账户)日历.读.共享,日历.读.写.共享 不支持委托(个人Microsoft帐户)。 不支持应用程序 有人能解释一下这个过程吗 错误 { "error": { "code": "BadArgument",

我一直在尝试访问findMeetingTime API,但每次尝试访问findMeetingTime API时,都会出现错误。我的应用程序具有允许的权限(委托)

我对下面的内容感到困惑,现在支持的应用程序意味着什么

权限类型权限(从最低权限到最高权限) 委托(工作或学校账户)日历.读.共享,日历.读.写.共享 不支持委托(个人Microsoft帐户)。 不支持应用程序

有人能解释一下这个过程吗

错误

{
    "error": {
        "code": "BadArgument",
        "message": "Invalid user address",
        "innerError": {
            "request-id": "929f6e29-694b-4fbc-a789-bd679403ab63",
            "date": "2019-04-22T23:15:43"
        }
    }
}

请求

{
  "attendees": [
    {
      "type": "required",
      "emailAddress": {
        "name": "M",
        "address": "xx.xxxx@xxxxx.com"
      }
    }
  ],
  "locationConstraint": {
    "isRequired": "false",
    "suggestLocation": "false",
    "locations": [
      {
        "resolveAvailability": "false",
        "displayName": "xxx"
      }
    ]
  },
  "timeConstraint": {
    "activityDomain": "work",
    "timeslots": [
      {
        "start": {
          "dateTime": "2019-04-16T09:00:00",
          "timeZone": "Pacific Standard Time"
        },
        "end": {
          "dateTime": "2019-04-18T17:00:00",
          "timeZone": "Pacific Standard Time"
        }
      }
    ]
  },
  "isOrganizerOptional": "false",
  "meetingDuration": "PT1H",
  "returnSuggestionReasons": "true",
  "minimumAttendeePercentage": "100"
}


如果您使用的是已注册的应用程序,则您具有应用程序权限。很遗憾,此方法不支持此权限类型