Skip to content

Commit

Permalink
add code challenge/PKCE
Browse files Browse the repository at this point in the history
  • Loading branch information
indy-independence committed Dec 16, 2024
1 parent 5bfced6 commit 92c5dc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cnaas_nms/api/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def handle_error(self, e):
server_metadata_url=auth_settings.OIDC_CONF_WELL_KNOWN_URL,
client_id=auth_settings.OIDC_CLIENT_ID,
client_secret=auth_settings.OIDC_CLIENT_SECRET,
client_kwargs={"scope": auth_settings.OIDC_CLIENT_SCOPE},
client_kwargs={"scope": auth_settings.OIDC_CLIENT_SCOPE, "code_challenge_method": "S256"},
authorize_params={"audience": auth_settings.AUDIENCE},
response_type="code",
response_mode="query",
Expand Down

0 comments on commit 92c5dc0

Please sign in to comment.