Skip to content

Commit

Permalink
feat(authorization): use authorization code flow with PKCE
Browse files Browse the repository at this point in the history
Signed-off-by: Joris Mancini <[email protected]>
  • Loading branch information
TheMaskedTurtle committed Nov 17, 2023
1 parent 4352bcf commit abadbf8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/utils/AuthService.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,7 @@ function initializeAuthenticationProd(
redirect_uri: idpSettings.redirect_uri,
post_logout_redirect_uri: idpSettings.post_logout_redirect_uri,
silent_redirect_uri: idpSettings.silent_redirect_uri,
response_mode: 'fragment',
response_type: 'id_token token',
response_type: 'code',
scope: idpSettings.scope,
automaticSilentRenew: !isSilentRenew,
accessTokenExpiringNotificationTime:
Expand Down

0 comments on commit abadbf8

Please sign in to comment.