Skip to content

Commit

Permalink
fix: token introspection endpoint rp jwks alignment (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiaspc committed Apr 10, 2024
1 parent e2d97fc commit 5bda34e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spid_cie_oidc/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.4.3"
__version__ = "1.4.4"
2 changes: 1 addition & 1 deletion spid_cie_oidc/relying_party/views/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 5bda34e

Please sign in to comment.