oidc-client-ts
oidc-client-ts copied to clipboard
OpenID Connect (OIDC) and OAuth2 protocol support for browser-based JavaScript applications
Fixes https://github.com/authts/oidc-client-ts/issues/1492 . ### Checklist - [x] This PR makes changes to the public API - [x] I have included links for closing relevant issue numbers
I am testing auth code flow with PKCE as [Authorization Code Grant with Proof Key for Code Exchange (PKCE)](https://github.com/authts/oidc-client-ts/blob/main/docs/protocols/authorization-code-grant-with-pkce.md) I have tried to put client_id and client_secret on spa page....
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.12.7 to 20.12.8. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Closes #1414 This adds a `requestTimeoutInSeconds` setting. When this is defined, it applies a retry timeout to all fetch requests made to the authorization server (e.g. /token, /userinfo, /.well-known/openid-configuration) except...
When I'm trying to visit a url which has a code as a query param then authentication is failing and giving this error. Other urls are working fine for ex:...
This is the second part of splitting up #1361 - hopefully it is easier to review. Addresses/highlights https://github.com/authts/oidc-client-ts/issues/1360 As per the issue, this is an implementation of Demonstrating Proof of...
I'm dealing with an OIDC situation where the access token response contains more useful properties that I need than get exposed by the User object. [EPIC OAUTH implementation](https://fhir.epic.com/Documentation?docId=oauth2§ion=Embedded-Oauth2-Launch_Access-Token-Request_No_Refresh-Tokens). For example...
Sometimes more data needs to be captured from the Token endpoint response than is standard. I'm proposing allowing users to specify extraTokenResponseKeys which will populate an extraTokenResponseProperties object inside the...
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 6.4.1 to 7.8.0. Release notes Sourced from @typescript-eslint/parser's releases. v7.8.0 7.8.0 (2024-04-29) 🚀 Features rule-tester: assert suggestion messages are unique (#8995) typescript-estree: add maximumDefaultProjectFileMatchCount and wide allowDefaultProjectForFiles...
Hello here ! First of all, thanks for the library :) I have a question about the UserManager instance. Is this possible to serialize and deserialize an UserManager instance ?...