Browse Source
refactor: adding custom headers to KeycloakOpenID
Adding `custom_headers` to KeycloakOpenID instantiation.
pull/533/head
Matt Collecutt
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
0 deletions
-
src/keycloak/openid_connection.py
|
@ -300,6 +300,7 @@ class KeycloakOpenIDConnection(ConnectionManager): |
|
|
verify=self.verify, |
|
|
verify=self.verify, |
|
|
client_secret_key=self.client_secret_key, |
|
|
client_secret_key=self.client_secret_key, |
|
|
timeout=self.timeout, |
|
|
timeout=self.timeout, |
|
|
|
|
|
custom_headers=self.custom_headers, |
|
|
) |
|
|
) |
|
|
|
|
|
|
|
|
return self._keycloak_openid |
|
|
return self._keycloak_openid |
|
|