Skip to content

Commit

Permalink
Don't use client_kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
torbsto committed Mar 4, 2024
1 parent 6153747 commit 107d331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keycloak_oauth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ async def setup_signed_jwt(self) -> None:

metadata = await self.keycloak.load_server_metadata()
auth_method = PrivateKeyJWT(metadata["token_endpoint"])
self.keycloak.client_auth_methods = [auth_method]
self.keycloak.client_kwargs.update(
{
"client_auth_methods": [auth_method],
"token_endpoint_auth_method": auth_method.name,
}
)
Expand Down

0 comments on commit 107d331

Please sign in to comment.