尝试使用 PATCH 更新 Planner Plan 的组时,对该owner
字段的更新失败并显示403
. 正在使用 Graph Explorer 进行尝试(使用 PostMan 也失败了)。
更改字段的尝试title
成功(权限没有问题,使用eTag
等)。
文档表明Groups.ReadWrite.All
是必需的,并且只能owner
由 Group Owner 更改,但正在使用的帐户是统一组的所有者。
是否需要任何额外的权限?示例信息:
If-Match: W/"JzEtUGxhbiAgQEBAQEBAQEBAQEBAQEBARCc="
PATCH https://graph.microsoft.com/beta/planner/plans/Vk_27olfLESU6vWJNgzVT2UABrBj
身体:
{
"title": "Updated plan with new group owner",
"owner": "0ab4b389-7c7c-4757-ac75-2ba5de8c8197"
}
回复:
{
"error": {
"code": "",
"message": "You do not have the required permissions to access this item, or the item may not exist.",
"innerError": {
"request-id": "7696b78c-474f-4fc0-bba9-4554bfe303c4",
"date": "2018-11-14T16:50:59"
}
}
}