非管理员用户可以向其他用户添加权限,但无法 update/delete 共享点 onedrive 项目的权限
Non-admin user can add permission to other user but not able to update/delete the permission on sharepoint onedrive item
我是 office 365 public 组的成员(不是所有者)。我可以在 sharepoint 中的任何 onedrive 项目上向任何外部用户授予权限,但是当我尝试更新权限或删除权限时,它 returns 以下响应为 403(禁止)状态码:-
{
"error": {
"code": "accessDenied",
"message": "The caller does not have permission to perform the action.",
"innerError": {
"request-id": "96e96666-b368-41f6-ad27-6a45ecc69410",
date: "2018-02-20T11:49:33"
}
}
}
这是正确的行为还是错误?
这是设计使然。用户需要“管理权限”权限才能获得 update/delete 权限,通常只授予管理员权限。
non-admin 用户可以添加权限(共享)这一事实受 Web 属性 通常称为“成员可以共享”的控制,通常保持打开状态。
我是 office 365 public 组的成员(不是所有者)。我可以在 sharepoint 中的任何 onedrive 项目上向任何外部用户授予权限,但是当我尝试更新权限或删除权限时,它 returns 以下响应为 403(禁止)状态码:-
{
"error": {
"code": "accessDenied",
"message": "The caller does not have permission to perform the action.",
"innerError": {
"request-id": "96e96666-b368-41f6-ad27-6a45ecc69410",
date: "2018-02-20T11:49:33"
}
}
}
这是正确的行为还是错误?
这是设计使然。用户需要“管理权限”权限才能获得 update/delete 权限,通常只授予管理员权限。
non-admin 用户可以添加权限(共享)这一事实受 Web 属性 通常称为“成员可以共享”的控制,通常保持打开状态。