Skip to content

Commit

Permalink
Merge pull request #552 from dhallam/bug/515-rfc7523-apply-headers-wh…
Browse files Browse the repository at this point in the history
…ile-signing

515 RFC7523 apply headers while signing
  • Loading branch information
lepture authored Jun 18, 2023
2 parents cadc55d + f506882 commit 61b686c
Show file tree
Hide file tree
Showing 2 changed files with 412 additions and 1 deletion.
3 changes: 2 additions & 1 deletion authlib/oauth2/rfc7523/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def sign(self, auth, token_endpoint):
client_id=auth.client_id,
token_endpoint=token_endpoint,
claims=self.claims,
headers=self.headers,
header=self.headers,
alg=self.alg,
)

Expand Down Expand Up @@ -89,5 +89,6 @@ def sign(self, auth, token_endpoint):
client_id=auth.client_id,
token_endpoint=token_endpoint,
claims=self.claims,
header=self.headers,
alg=self.alg,
)
Loading

0 comments on commit 61b686c

Please sign in to comment.