pamapa

Results 411 comments of pamapa

i guess the readme is correct, in case of `hasAuthParams()` the context is a callback and the library itself handles that callback...

The interface of `cookieStorage` seems different than the direct supported `localStorage`, thus you cannot use `WebStorageStateStore`, but you can implement your own `WebStorageStateStore` and pass that to `userStore`....

This library is using underneath the library `oidc-client-ts`. For `WebStorageStateStore` see here https://github.com/authts/oidc-client-ts/blob/main/src/WebStorageStateStore.ts. You should be able either to exetnd form it and "override" or completely implement your custom class...

See https://developer.mozilla.org/en-US/docs/Web/API/Crypto/subtle, i guess you are using SSR? We probably have to add some code to handle that within oidc-client-ts. To avoid that you could use v2 of this and...

The Crypto.subtle https://developer.mozilla.org/en-US/docs/Web/API/Crypto/subtle is a cornerstone, there are no plans on changing that. Try to find a solution, which works for your. Either use localhost for development or setup a...

I use the `AuthProvider` as child of the redux store. When you come up with a light-way fix/improvement of vice versa (`redux store` provider as child of `AuthProvider`) i would...

I do not know gitlab IDP, but i guess they are maybe using a session cookie to recognize you?

> Then it should work out of the box, as I am using the same session and a popup, or am I wrong? You are most probably right. You have...

You will need to find out why. Enable logging: https://authts.github.io/oidc-client-ts/#md:logging Or try to debug, see here: https://github.com/authts/oidc-client-ts/blob/2abba7e3b381ceaab6e2e0c5216a67a7f911fee8/src/OidcClient.ts#L141