Skip to content

Commit 5bda34e

Browse files
authored
fix: token introspection endpoint rp jwks alignment (#315)
1 parent e2d97fc commit 5bda34e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spid_cie_oidc/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.4.3"
1+
__version__ = "1.4.4"

spid_cie_oidc/relying_party/views/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def get_token_request(self, auth_token, request, token_type):
147147
"exp": exp_from_now(),
148148
"jti": str(uuid.uuid4())
149149
},
150-
jwk_dict=get_key(rp_conf)
150+
jwk_dict = get_key(rp_conf.jwks_core)
151151
)
152152
token_request_data["client_assertion"] = client_assertion
153153

0 commit comments

Comments
 (0)