pamapa
pamapa
> what is AuthParams? See https://github.com/authts/react-oidc-context/blob/main/src/utils.ts
I do not know the behavior of Google Indenity. Maybe be this helps you https://github.com/authts/oidc-client-ts/pull/1038/files#diff-c833a002f3fa487666ed42d9742ea5ae2fa4ada00227943616583ed0c3204120 (adding client_id) or you need to pass the `id_token_hint` into `auth.signoutPopup()`, maybe both does not...
do you have a onClick handler? Can you dump your ui button code here?
How does it look like rendered is it a `` tag, which Safari reacts with download. Maybe try something else?
no idea, you will need to track it down, does that button + `onClick` with a `console.log("aha")` and no `auth.signoutSilent()` also trigger the download?
Hard to say what the problem is, you need to track it down, if there is a problem within this library, i am happy to apply patches...
`userManager.removeUser()` or `userManager.signoutRedirect/Popup/Silent` should make it work
Thanks for reporting back and improving the docs. I thought `hasTriedSignin` would take care of endless loops, maybe we just need to flip the sequence? ``` auth.signinRedirect(); setHasTriedSignin(true); -> setHasTriedSignin(true);...
check the event system: https://authts.github.io/oidc-client-ts/#md:events
Why not, looks good. Its up to each application developer to define what happens when you login the first time. The library seems to give you that flexibility. I check...