oidc-client-ts
                                
                                
                                
                                    oidc-client-ts copied to clipboard
                            
                            
                            
                        OpenID Connect (OIDC) and OAuth2 protocol support for browser-based JavaScript applications
I would like to use oic-client-ts in service worker in chrome extension. Be these things throw errors(window is not existent in service worker): async signinPopupCallback(url = window.location.href, keepOpen = false)...
Closes #580 - Take over from MR #612 as user has problems with formatting/git - For now i have bound that feature to `includeIdTokenInSilentRenew` as noted in the related issue...
Closes/fixes #issue #580 ### Checklist - [x] This PR makes changes to the public API - [x] I have included links for closing relevant issue numbers
Bumps [jest-mock](https://github.com/facebook/jest/tree/HEAD/packages/jest-mock) from 27.5.1 to 28.1.3. Release notes Sourced from jest-mock's releases. v28.1.3 Features [jest-leak-detector] Use native FinalizationRegistry when it exists to get rid of external C dependency (#12973) Fixes...
Closes/fixes #611 ### Checklist - [x] This PR makes changes to the public API - [x] I have included links for closing relevant issue numbers
If somebody knows a solutions to this problem please help! I tried using the exactly same packages as the example but nothing. it breaks on this line currentUser: User; on...
As per OIDC specification (https://openid.net/specs/openid-connect-session-1_0.html) an RP should send the current ID token of a user when attempting an silent renew via `prompt=none` call. To send the ID token using...
Is it possible to include cookies in the request when any request (such as access token renewal) is sent? It should be possible by passing `{ credentials: 'include' }` to...
Currently oidc-client-ts does not support the status `error` that is specified in the OIDC session management specification (https://openid.net/specs/openid-connect-session-1_0.html section 3). The error status is supposed to be the result of...
I'm trying to use my own custom store implementation where all the data has to be read/write in an async manner. ```ts userStore: new WebStorageStateStore({ store: new MyStore() }); ```...