John Kelleher
Results
2
comments of
John Kelleher
Since we have access to the `userManager.settings` I would just use the same check oidc-client-js uses https://github.com/IdentityModel/oidc-client-js/blob/dev/src/OidcClient.js#L103 and https://github.com/IdentityModel/oidc-client-js/blob/dev/src/SigninRequest.js#L96 ``` const isCode = (response_type) => { var result = response_type.split(/\s+/g).filter(function...
We also have the `redirect_uri` in the UserManagerSettings, is there a reason we do not check the path to confirm it is the correct OIDC callback location?