oidc-client-ts
                                
                                
                                
                                    oidc-client-ts copied to clipboard
                            
                            
                            
                        OpenID Connect (OIDC) and OAuth2 protocol support for browser-based JavaScript applications
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...
I'm seeing lots of errors in IdentityServer for token issued failure when this library is trying to re-use refresh tokens. 
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...
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...
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)...
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...
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...
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.
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...
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,...