我们使用Microsoft Graph API在Outlook中创建日历
以下是HTTP请求
POST https://graph.microsoft.com/v1.0/users/me/calendars
Content-type: application/json
{
"name": "My Calendar"
}
过去两年来一直在工作。突然,它抛出错误
{
"error": {
"code": "TargetIdShouldNotBeMeOrWhitespace",
"message": "Id is malformed.",
"innerError": {
"request-id": "78bce863-d6fb-4ea9-b0f8-e5097010cef6",
"date": "2019-03-23T11:54:34"
}
}
}
当我们搜索文档(https://docs.microsoft.com/en-us/graph/api/user-post-calendars?view=graph-rest-1.0)时。 我们发现API网址已更改
何时发布这样的关键更新,导致我们的流量中断?
是否有任何官方频道/群组通知这些更改。
邮件API的Microsoft Graph API - SendMail http 400 - API url from documentation not working的类似问题
答案 0 :(得分:3)
正确的URI是/me
,而不是/users/me
。在幕后,/me
只是/users/{id}
的别名。要求/users/me
等同于要求/users/users/me
。
听起来您在使用意外行为。纠正该行为后,它停止工作。