oidc-client-js
oidc-client-js copied to clipboard
OpenID Connect (OIDC) and OAuth2 protocol support for browser-based JavaScript applications
I think the documentation incorrectly describes the silent_redirect_uri of use for the silent _renew_, where in fact it is used for the silent _login_. Am I right, and should the...
When an application is exchanging token with the query `/openid/token` and it fails with HTTP status 400, then it needs to give more information regarding the reason. And this is...
and redirect automatically in signinCallback
`dist/oidc-client.rsa256.min.js` jumped from 170 KB in 1.11.0 to 800 KB in 1.11.1 We used `oidc-client.rsa256.min.js` because it was significantly smaller than the other artifacts, my understanding is that `oidc-client.rsa256.min.js` is...
When a user is stored, the `state` property, which is hydrated with the `state` that has been echoed back from the server, is not stored, as per; https://github.com/IdentityModel/oidc-client-js/blob/01c872abc145114c76d9491b242d4d814c07e22a/src/User.js#L48-L57 Is there...
When doing a silent renew via iframe (e.g. in a browser with no offine_access scope), the user manager calls the userinfo endpoint and updates the user profile/claims. But when doing...
After authenticating I see the following log-statements:  My understanding is, that the callback should be triggered in 3277/3338 seconds; but instead it seems to be triggered way to often...
They're not in the wiki https://github.com/IdentityModel/oidc-client-js/wiki but they're in the code https://github.com/IdentityModel/oidc-client-js/blob/e3b23e296c0d7b7464304bbbfe4b1b32b9cc229b/src/UserManager.js#L290 and used by e.g. oidc-react https://github.com/bjerkio/oidc-react/blob/71d86cfb195af942feb3d1add7f5ea71e31abe4e/src/AuthContext.tsx#L88
Sometimes the `error` property returned on failures from our IDP endpoint is rather generic, and other fields contain important additional information. It would be useful if those fields could be...
I'm testing an application that uses this library. I was wondering if there is a way for me to inject the user object found in the session storage so I...