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

OAuth allows for the authorization server to provide default scopes when no scopes are specified by the requestor as described in https://datatracker.ietf.org/doc/html/rfc6749#section-3.3 This allows for the library to be configured...

enhancement

I'm seeing lots of errors in IdentityServer for token issued failure when this library is trying to re-use refresh tokens. ![image](https://github.com/quarkusio/quarkus/assets/12090617/435c791b-e8f2-4799-bc83-7cd88a804a7d)

help wanted

Once logged in to my oidc client app (call it my Portal app), during subsequent loads (page refresh/new tabs etc) the client calls getuser() and gets a result from local...

question

I am trying to implement sign-out against an AWS Cognito user pool. I followed some of the hints here https://github.com/authts/oidc-client-ts/issues/802 ```javascript const cognito = "xxxxxxxx"; const userPool = "xxxxxxxxxxxxx"; const...

question
Amazon Cognito

Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 6.4.1 to 6.21.0. Release notes Sourced from @​typescript-eslint/eslint-plugin's releases. v6.21.0 6.21.0 (2024-02-05) 🚀 Features export plugin metadata (#8331) allow parserOptions.project: false (#8339) eslint-plugin: add rule prefer-find (#8216)...

dependencies

When calling `signinCallback` or other callback functions that can return a User, these functions should accept a generic so that the state that is roundtripped can be properly typed. IE...

enhancement
help wanted

When attempting to implement a redirect to the Identity Server login page, the application appears to be stuck in an infinite redirection loop. I suspect this may be due to...

question

If it's possible please add support for Pushed Authorization Requests ([Specification](https://datatracker.ietf.org/doc/html/rfc9126)) for increased security and shorter authorize url.

enhancement
help wanted

Good afternoon, Calling the IdP /token (grant_type: authorization_code), I receive this attribute in the response: refresh_token_expires_in: 3600 I cannot find this attribute in the repo source code and this attribute...

enhancement
Microsoft Entra ID

I have implemented the `authorization code` and `silent refresh` using the `oidc-client-ts` library in **Angular 15**, using an iframe and `signinCallback ` for the silent callback. Everything works as expected,...

question