Reputation: 75
I am working with keycloak UMA. With the help of keycloak I can create the resources in keycloak Authorization option
with some basic details name, type, URI, scope, etc
and we also have the option for resource owner
, with UI we are not able to change
the owner,
But I've some question regarding resource owner:
username or email address
I've also tried with below CURL, but I am not able to add multiple owner names.
curl -v -X POST \
http://${host}:${port}/auth/realms/${realm_name}/authz/protection/resource_set \
-H 'Authorization: Bearer '$pat \
-H 'Content-Type: application/json' \
-d '{
"name":"Alice Resource",
"owner": "alice"
}'
Upvotes: 3
Views: 1390
Reputation: 790
token exchange
or Impersonation
feature provided by keycloak.Upvotes: 2