Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit fa124c5

Browse files
committed
Use get_client_id.
1 parent 9ad1f98 commit fa124c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/oidcrp/oidc/access_token.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ def gather_verify_arguments(self,
3737
:return: dictionary with arguments to the verify call
3838
"""
3939
_context = self.client_get("service_context")
40-
# Default is RS256
40+
_entity = self.client_get("entity")
4141

4242
kwargs = {
43-
'client_id': _context.client_id,
43+
'client_id': _entity.get_client_id(),
4444
'iss': _context.issuer,
4545
'keyjar': _context.keyjar,
4646
'verify': True,

0 commit comments

Comments
 (0)