Skip to content

Commit

Permalink
Fix compatibility issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Krismix1 committed Nov 12, 2024
1 parent 6882088 commit 4aeed8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keycloak/keycloak_openid.py
Original file line number Diff line number Diff line change
Expand Up @@ -1397,7 +1397,7 @@ async def a_uma_permissions(self, token, permissions=""):
params_path = {"realm-name": self.realm_name}
payload = {
"grant_type": "urn:ietf:params:oauth:grant-type:uma-ticket",
"permission": permission,
"permission": list(permission), # httpx does not handle sets correctly
"response_mode": "permissions",
"audience": self.client_id,
}
Expand Down

0 comments on commit 4aeed8f

Please sign in to comment.