GraphAPI calendarGroup上返回不受支持的段类型

时间:2016-02-18 14:12:19

标签: office365 microsoft-graph

现有的工作代码现在突然失败了。它调用calendarGroup来获取主日历组。 “https://graph.microsoft.com/v1.0/me/calendarGroup

现在已经开始返回错误:

{
  "error": {
    "code": "BadRequest",
    "message": "Unsupported segment type.",
    "innerError": {
        "request-id": "288458d6-6a4a-4879-9bd9-512afc2ed2dd",
        "date": "2016-02-18T13:54:15"
    }
  }
}

通过使用“https://graph.microsoft.com/v1.0/me/calendarGroup”测试网站进行上述调用,也可轻松复制此内容。

graph.microsoft.io文档说明: 获取calendarGroup

用户的默认calendarGroup。 GET / me / calendarGroup

微软的任何人都会回应吗?

2 个答案:

答案 0 :(得分:0)

导航属性的名称是calendarGroups而不是calendarGroup(请参阅https://graph.microsoft.com/v1.0/ $元数据中的元数据或http://graph.microsoft.io/en-us/docs/api-reference/v1.0/api/user_list_calendargroups处的文档)。请以https://graph.microsoft.com/v1.0/me/calendarGroups的身份尝试请求。

答案 1 :(得分:0)

微软的官方回应似乎是从他们的API生产版本中删除了一个记录的功能。请参阅链接的github issue以删除该功能的文档。