oidc-client-ts
oidc-client-ts copied to clipboard
OpenID Connect (OIDC) and OAuth2 protocol support for browser-based JavaScript applications
How would one go about changing the acr_values in the settings object after someone is authenticated? For example, when an admin user selects a different customer from a list, I'd...
I'm migrating from oidc-client to oidc-client-ts and having trouble to adjust my unit tests. Method under test: ``` public onUserExpired(callback: () => void) { this.userManager.events.addAccessTokenExpired(callback); } ``` I want to...
Hello, I am using Azure AD as the auth provider and there is 24 hours lifetime of the refresh token. After 24 hours I am getting the following error in...
We experience today oidc client sigingComplete throw below error and it pops for certain time, after that it automatically worked again without doing any changes from our end. This happed...
While the library handles Access Token refreshing with silent renew, it doesn't take into account the Refresh Token expiration time at `refresh_expires_in`. https://github.com/authts/oidc-client-ts/blob/8d8a700b23a2fffdada0b3ecaf271bc16a74759d/src/UserManager.ts#L226-L232 Assuming the user either sets `automaticSilentRenew` or...
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.6.4 to 4.8.3. Release notes Sourced from typescript's releases. TypeScript 4.8.3 For release notes, check out the release announcement. For the complete list of fixed issues, check...
Bumps [eslint](https://github.com/eslint/eslint) from 8.23.0 to 8.23.1. Release notes Sourced from eslint's releases. v8.23.1 Bug Fixes b719893 fix: Upgrade eslintrc to stop redefining plugins (#16297) (Brandon Mills) 734b54e fix: improve autofix...
Hi, I am working on a React project, and need to use auth service. Previously, I used `BrowserRouter`, everything is good. But for some reason, I need to change to...
Hello, I've not seen other tickets about this issue, but I'm unable to send the resource parameter to the refresh_token call, I tried using the extraTokenParameter, extraQueryParameter and simply in...
Password Credentials Grant https://www.rfc-editor.org/rfc/rfc6749#section-4.3 Just a post ```http POST https://keycloak/auth/realms/demo/protocol/openid-connect/token Content-Type: application/x-www-form-urlencoded grant_type=password&username=admin&password=admin&client_id=demo-web ```