- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试更新 (PATCH) 现有的 Microsoft Planner 任务,以向其中添加一 (1) 个 list 项目。我正在使用 Microsoft 文档 https://learn.microsoft.com/en-us/graph/api/plannertaskdetails-update?view=graph-rest-1.0&tabs=javascript作为引用,我正在使用 Postman 发送请求。
{
"error": {
"code": "",
"message": "The If-Match header contains an invalid value.",
"innerError": {
"request-id": "7b50a25b-7c5a-443b-9a41-1b6314be4014",
"date": "2019-05-16T23:59:03"
}
}
}
据我所知,If-Match 键的构建方式与 Microsoft 文章中使用它的方式完全相同。我发现了一篇有点类似的文章 ( https://powerusers.microsoft.com/t5/Connecting-To-Data/Custom-Connector-Graph-The-If-Match-header-must-be-specified-for/td-p/144092 ),但是这个人填写 If-Match 值的方式不同,对我来说根本不起作用......
我首先从创建任务后收到的响应中重用了 eTAG 值:"@odata.etag": "W/\"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBARCc=\""
有人知道我在这里做错了什么吗?
这是我的补丁:
https://graph.microsoft.com/v1.0/planner/tasks/n...................pYAM-DX/details
这些是我的标题:
Content-Type: application/json
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJub..........
If-Match: W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBARCc="
这是我的 body :
{
"previewType": "checklist",
"checklist": {
"{{$guid}}":{
"@odata.type": "microsoft.graph.plannerChecklistItem",
"title": "Update task details",
"isChecked": false
}
}
}
我原以为 If-Match 键是正确的,因为我使用了 Microsoft 文章,但不知何故导致了错误消息:
"The If-Match header contains an invalid value."
最佳答案
我遇到了类似的问题。更新任务详细信息时,我使用了任务中的 etag。任务和任务详细信息是不同的对象。检查 - MS Graph doc
使用以下方法从创建任务的任务详细信息中获取 etag 值:
GET https://graph.microsoft.com/v1.0/planner/tasks/{task-id}/details
关于postman - 如何修复 - 更新 plannertaskdetails - If-Match header 包含无效值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56246949/
我是一名优秀的程序员,十分优秀!