pamapa
pamapa
I am trying to not use the refresh token, in case the user authenticated before, the authz server will set a session cookie, which then automates the normal login like...
@Tockra and @pseidemann I agree with you, this is a bug in the documentation, would be nice if you could update this. BTW: I am think if it would not...
@luisfagottani maybe https://github.com/authts/react-oidc-context/issues/872 helps you
The current approach is that you have to do it by your own, as different IDPs may need different parameters. Are you sure you need nonce? - https://openid.net/specs/openid-connect-core-1_0.html#AuthRequest - https://devforum.okta.com/t/authorization-code-flow-is-the-nonce-parameter-necessary/12150...
Signin is tricky, as it involves the redirect callback mechanisms. Try to log in `onSigninCallback`: https://github.com/authts/react-oidc-context/blob/48708b6a45c816fec94f692d113266c957c1f792/src/AuthProvider.tsx#L45 Or add full logging like described here https://authts.github.io/oidc-client-ts/#md:logging
See https://github.com/authts/oidc-client-ts/blob/main/src/AccessTokenEvents.ts, you will need to load an initial valid User object with valid access token in order to have that event. Either add debug logging https://authts.github.io/oidc-client-ts/#md:logging or debug down...
In the user manager constructor: ``` // order is important for the following properties; these services depend upon the events. if (this.settings.automaticSilentRenew) { this.startSilentRenew(); } ``` This code will call...
This https://github.com/authts/oidc-client-ts/tree/main/samples/Parcel might help you.
I have no experience in next.js/SSR. The access token is used in-between client and server. `getServerSideProps ` on the other hand is executed on the server side. Thus i would...
Scope is a mechanism in OAuth 2.0 to limit an application's access to a user's account. An application can request one or more scopes, this information is then presented to...