I ported react-oidc-context to Vue 3. vue-oidc-context gives you the same OIDC / OAuth 2.0 ergonomics — option names, lifecycle, callbacks — as a Vue plugin with composables, renderless components, a vue-router guard, and end-to-end TypeScript types. Same config object, Vue idioms, SSR-safe out of the box.
Read ArticleTag: oidc
Svelte-kit and Keycloak OIDC
There’s NextAuth.js from vercel, which was made for next.js Recently it was adapted for svelte-kit. The announcement post: https://vercel.com/blog/announcing-sveltekit-auth The keycloak provider doc: https://next-auth.js.org/providers/keycloak The example repository: https://github.com/nextauthjs/sveltekit-auth-example Well it does work, on first sight. Sign in, Sign out, requiring auth for pages, it all works. However you need a confidential client. And this token…
Read Article