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

Silent renew of the access token [is only done if it expires soon, not if it's already expired](https://github.com/authts/oidc-client-ts/blob/main/src/SilentRenewService.ts#L23). It's possible to manually trigger renewal for expired access tokens by ```...

bug

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.4.2 to 5.5.4. Release notes Sourced from typescript's releases. TypeScript 5.5.4 For release notes, check out the release announcement. For the complete list of fixed issues, check...

dependencies

I'm new to oidc-client-ts and I'm facing an error while implementing Oracle Identity Cloud Service (IDCS) with it. The error message is: {"error": "invalid_redirect_uri", "error_description": "Client XXXXXX requested an invalid...

question
Oracle IDCS

Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.16.3 to 7.25.3. Release notes Sourced from @​babel/traverse's releases. v7.25.3 (2024-07-31) :bug: Bug Fix babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-traverse #16699 Avoid validating visitors produced by traverse.visitors.merge (@​nicolo-ribaudo) :house: Internal babel-parser...

dependencies

When I call my signinRedirect function, I pass in the localstorage as a url state parameter. I then sign in and get redirected to my app to complete the auth...

question

Hello there, I've been using the `oidc-client-ts` package, and I've encountered an issue regarding the support for refresh token rotation. This feature is a requirement for being able to securely...

bug

Hi. I'm using Keycloak 20 with oidc-client-ts 3.0.1 + react-oidc-context 3.1.0. For most of the users including myself everything works fine, except from one user. The issue is i don't...

question
Keycloak Identity

Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 7.16.1 to 7.18.0. Release notes Sourced from @​typescript-eslint/parser's releases. v7.18.0 7.18.0 (2024-07-29) 🚀 Features types: update ECMA versions (#9634) 🩹 Fixes eslint-plugin: [no-unnecessary-type-assertion] prevent runtime error when...

dependencies

Even after the user has authenticated and has access to the app, the user.querySessionStatus is always null. Is that expected? Using authorization code flow

Hi, when doing a silent signing, the callback always expects that there is a custom state `url_state`. This is required because: SigninResponse.ts: ```ts const splitState = decodeURIComponent(this.state).split(URL_STATE_DELIMITER); this.state = splitState[0];...