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

Hi, I hope all is well! # Background 1. I am using tokens with a lifetime of 5 minutes. 2. Requests are being sent to my API with my token...

Related to #644, but not exactly the same, so decided to open this separately. ## Reproducing In a setup where: - You save user state in `localStorage` - You use...

Looking for some details on if this package includes built in activity monitoring for silent renews. For example if a user is not active for a certain amount of time...

question

I'm migrating one project towards oidc-client-ts and found there are a few tests that rely on internal implementations of the former library. Do you have some suggestions on how to...

question

Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.8.2 to 5.8.3. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=typescript&package-manager=npm_and_yarn&previous-version=5.8.2&new-version=5.8.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: #...

dependencies
javascript

Hello @pamapa , With 3rd parties cookie phase out problem happened in Firefox for long time and probably (going) to happen in Chrome early next year I tried to implement...

**Description:** I'm facing an issue where after a successful authorization request, the same access token is returned even after attempting a silent renew. Additionally, the silent renew is only triggered...

I implemented the oidc-client.ts in my vue capacitor app. To logout i use the signoutSilent. ``` async function logout() { await userManager?.signoutSilent(); } catch (error) { console.error('OIDC logout error:', error);...

My application is currently using two different IdPs, both using authorization code flow: Auth0 and a home-grown auth provider. oidc-client-ts operations (eg. sign in, sign out, etc.) are all working...

Using the `oidc-client-ts` signing out only uses `GET` option when it accesses `end_session_endpoint`. From the OpenID spec [RP-Initiated Logout](https://openid.net/specs/openid-connect-rpinitiated-1_0.html#RPLogout) > OpenID Providers MUST support the use of the HTTP GET...