diff options
author | Frederick Muriuki Muriithi | 2024-07-29 14:56:15 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-07-31 09:30:28 -0500 |
commit | 50ee89f1d3b6daafa4a21d6640afd41a0e41aab1 (patch) | |
tree | 881bff5dae3af6f1df5fe5ad4383817908e9b364 /gn_auth/auth/authentication/oauth2/endpoints | |
parent | 5338f5cae369a34e9a391de58cc73247adf15373 (diff) | |
download | gn-auth-50ee89f1d3b6daafa4a21d6640afd41a0e41aab1.tar.gz |
Update all endpoints to use the `client_secret_post` auth method.
Diffstat (limited to 'gn_auth/auth/authentication/oauth2/endpoints')
-rw-r--r-- | gn_auth/auth/authentication/oauth2/endpoints/introspection.py | 1 | ||||
-rw-r--r-- | gn_auth/auth/authentication/oauth2/endpoints/revocation.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gn_auth/auth/authentication/oauth2/endpoints/introspection.py b/gn_auth/auth/authentication/oauth2/endpoints/introspection.py index 572324e..200b25d 100644 --- a/gn_auth/auth/authentication/oauth2/endpoints/introspection.py +++ b/gn_auth/auth/authentication/oauth2/endpoints/introspection.py @@ -20,6 +20,7 @@ def get_token_user_sub(token: OAuth2Token) -> str:# pylint: disable=[unused-argu class IntrospectionEndpoint(_IntrospectionEndpoint): """Introspect token.""" + CLIENT_AUTH_METHODS = ['client_secret_post'] def query_token(self, token_string: str, token_type_hint: str): """Query the token.""" return _query_token(self, token_string, token_type_hint) diff --git a/gn_auth/auth/authentication/oauth2/endpoints/revocation.py b/gn_auth/auth/authentication/oauth2/endpoints/revocation.py index 240ca30..80922f1 100644 --- a/gn_auth/auth/authentication/oauth2/endpoints/revocation.py +++ b/gn_auth/auth/authentication/oauth2/endpoints/revocation.py @@ -12,6 +12,7 @@ from .utilities import query_token as _query_token class RevocationEndpoint(_RevocationEndpoint): """Revoke the tokens""" ENDPOINT_NAME = "revoke" + CLIENT_AUTH_METHODS = ['client_secret_post'] def query_token(self, token_string: str, token_type_hint: str): """Query the token.""" return _query_token(self, token_string, token_type_hint) |