我正在尝试使用此请求致电https://graph.microsoft.com/v1.0/planner/tasks/ {{taskId}}/details:
{
"checklist": {
"552f6163-e7d3-4e31-9015-577b0e6cc997": {
"@odata.type": "microsoft.graph.plannerChecklistItem",
"title": "Update task details",
"isChecked": false
}
}
}
我正确设置了 if-match 标头,并带有来自任务的 etag。运行查询时,我收到以下 400 Bad Request 响应:
{
"error": {
"code": "",
"message": "The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. ",
"innerError": {
"request-id": "c9781050-e409-4b88-9d7e-0a57dcec1f82",
"date": "2020-05-29T21:26:17"
}
}
}
我尝试了随机 GUID 和 base-64 编码字符串,但无济于事。我也尝试下载 Postman Environment,但我从那里得到了同样的错误。任何帮助或指导将不胜感激。
谢谢你的时间。B.