Skip to content

Commit

Permalink
Correct type of client certificate in token issuing endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
kipparker committed Jul 29, 2024
1 parent e129739 commit 0f13738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion authentication/api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ async def token(
redirect_uri: Annotated[str, Form()],
code_verifier: Annotated[str, Form()],
code: Annotated[str, Form()],
x_amzn_mtls_clientcert: Annotated[str, Header()],
x_amzn_mtls_clientcert: Annotated[str | None, Header()],
) -> models.TokenResponse:
"""
Token issuing endpoint
Expand Down

0 comments on commit 0f13738

Please sign in to comment.