oidc-react icon indicating copy to clipboard operation
oidc-react copied to clipboard

React component to provide OpenID Connect and OAuth2 protocol support. 🌳

Results 67 oidc-react issues
Sort by recently updated
recently updated
newest added

Thank you and other contributors about this good module. By this PR we are able to add args to signinRedirect when autoSignin is true

Tests are warning us that we are using a deprecated feature. It can be seen in this build: https://github.com/bjerkio/oidc-react/runs/7359386639?check_suite_focus=true The full warning is this: ``` Warning: ReactDOM.render is no longer...

help-wanted
good-first-issue

When using Keycloak, the session_state is included in the response by default. That appears to cause oidc-react (or oidc-react-js?) to make multiple authentication requests in the background under Firefox at...

kind/enhancement
help-wanted
impact/usability

I noticed that when signIn is called directly, as opposed to say `autoSignIn` the `onBeforeSignIn` hook is not called. I think it's inconsistent to do it this way since it...

Is there any was to distinguish between "not logged in" and "OIDC service not available"? When the OIDC service is not available, I see the following error in the console:...

Hi. I'm adding middleware to the API requests, I want to detect if the token expired(Unauthorized/401). When the response is forbidden I want to silent sign in to continu to...

For some reason, after I log in with my Auth Provider, I get back a id_token, but not an access token. ![image](https://user-images.githubusercontent.com/368842/125869411-0ae3efa3-5957-4104-8c5e-e894275d2bed.png) I have seen my colleagues being able to...

Hi! Thanks for creating this lib! I've got some problem with the signIn. Here's my code ` onSignIn: (user: User || null) => { console.log('user', user) sessionStorage.setItem('access_token', user.access_token); history.push('/') }`...