From 008c1595da3947c1ae32f4a094615832d6bd3134 Mon Sep 17 00:00:00 2001 From: Tobias Hilbig Date: Wed, 10 Apr 2024 10:58:20 +0200 Subject: [PATCH] fix: token introspection endpoint rp jwks alignment --- spid_cie_oidc/relying_party/views/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spid_cie_oidc/relying_party/views/__init__.py b/spid_cie_oidc/relying_party/views/__init__.py index 65f8053a..4fbb5b2d 100644 --- a/spid_cie_oidc/relying_party/views/__init__.py +++ b/spid_cie_oidc/relying_party/views/__init__.py @@ -147,7 +147,7 @@ def get_token_request(self, auth_token, request, token_type): "exp": exp_from_now(), "jti": str(uuid.uuid4()) }, - jwk_dict=get_key(rp_conf) + jwk_dict = get_key(rp_conf.jwks_core) ) token_request_data["client_assertion"] = client_assertion