IE11 throws the error "Invalid nonce" when trying to authenticate a user with implicit grant flow. From what I understand nonce is not supported in IE11 and therefore ends up as null on the server.
My config for the oidc:
{ authority: 'url/to/authority', client_id: 'myClientId', redirect_uri: 'redirect/uri', response_type: 'token id_token', scope: 'openid profile basegateway', post_logout_redirect_uri: '/login/post-logout', revokeAccessTokenOnSignout: true, loadUserInfo: false, userStore: new WebStorageStateStore({ store: localStorage }) }
Is there any configuration or something that has to be in place to support IE11?
IE11 throws the error "Invalid nonce" when trying to authenticate a user with implicit grant flow. From what I understand nonce is not supported in IE11 and therefore ends up as null on the server.
My config for the oidc:
{ authority: 'url/to/authority', client_id: 'myClientId', redirect_uri: 'redirect/uri', response_type: 'token id_token', scope: 'openid profile basegateway', post_logout_redirect_uri: '/login/post-logout', revokeAccessTokenOnSignout: true, loadUserInfo: false, userStore: new WebStorageStateStore({ store: localStorage }) }
Is there any configuration or something that has to be in place to support IE11?