oidc-client-ts icon indicating copy to clipboard operation
oidc-client-ts copied to clipboard

OpenID Connect (OIDC) and OAuth2 protocol support for browser-based JavaScript applications

Results 217 oidc-client-ts issues
Sort by recently updated
recently updated
newest added

I have a sinle page react application in which I've added some custom events to the user manager to be called on token expiring and token expired. I added some...

When using signinredirect flow, ``` const user = await this._signinEnd(url); ``` The SigninResponse does parse `error` and `error_description` search params, but it seems that the presence of these fields never...

Hello, First of all, thanks to all the maintainers of this library. I really appreciate your work. I'd like to open up a discussion about a new option for the...

Add the following class: ```js import Cookies from "universal-cookie"; export class CookieStorage { constructor(cookieHeader) { this._cookies = new Cookies(cookieHeader); } getItem(key) { return this._cookies.get(encodeURIComponent(key), { doNotParse: true }); } setItem(key,...

question

We have a rather odd occurrence here We are using refresh tokens to renew the token. Steps to reproduce: Set the token and refresh token lifetimes short (300) Login Close...

Latest version, with Safari 18.2 ``` The operation is insecure. OidcClientSettingsStore@https://localhost:3000/static/js/bundle.js:174029:59 UserManagerSettingsStore@https://localhost:3000/static/js/bundle.js:175436:10 UserManager@https://localhost:3000/static/js/bundle.js:175849:49 ``` After digging a bit, it seems default security values of Safari prevent the use of both...

Sometimes the callback fails with login_required. When this happens, i don't call anything. (like i call `userManager.signinSilentCallback();` when its successfull.) Then it takes about 5 seconds for the top frame...

I noticed that on initial load of a React app all pending resources are cancelled if redirecting to sign in failed. This happens when using `UserManager` with the default `RedirectNavigator`,...

Our project uses an Azure Static Web App, which is linked to Azure Functions. The issue with this setup is, that the Authorization header is hijacked by Azure, to authenticate...

As of title, i need to add an extra header when invoking the **querySessionStatus** function. Is it possible to do it? I see that there is a **extraHeaders** config param...