¶ AclManagementClient
Update Time: 2024-10-10 07:28:40
Authing builds an authorization model based on PBAC (Policy Based Access Control), which can be combined with RBAC (Role Based Access Control) to achieve high flexible and refined privilege control. This client abstracts this model into two methods: allow and isAllowed.
¶ Allow a user to perform an operation on a resource
AclManagementClient().allow(userId, action, resource)
Allow a user to perform an operation on a resource
¶ Parameters:
userId
<string> User IDaction
<string> The name of the action, which is recommended to use the format of <resourceType>:<actionName> , such asbooks:edit
,books:list
resource
<string> Resource name, which must be in the format of <resourceType>:<resourceId> or _, such as_
,books:123
,books:\*
¶ Example:
$managementClient->acl()->allow("resource", "action", "user id");
¶ Get whether a user has operation authority of a resource
AclManagementClient().isAllowed(userId, action, resource)
Get whether a user has operation authority of a resource
¶ Parameters:
userId
<string> User IDaction
<string> The name of the action, which is recommended to use the format of <resourceType>:<actionName> , such asbooks:edit
,books:list
resource
<string> Resource name, which must be in the format of <resourceType>:<resourceId> or _, such as_
,books:123
,books:\*
¶ Example:
$managementClient->acl()->isAllowed("user id", "action", "resource");