Skip to content

Commit

Permalink
chore: make audience in token exchange optional (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
pitwegner authored Nov 13, 2023
1 parent e0e1882 commit 3704c77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keycloak/keycloak_openid.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def refresh_token(self, refresh_token, grant_type=["refresh_token"]):
def exchange_token(
self,
token: str,
audience: str,
audience: Optional[str] = None,
subject: Optional[str] = None,
subject_token_type: Optional[str] = None,
subject_issuer: Optional[str] = None,
Expand Down

0 comments on commit 3704c77

Please sign in to comment.