What's everyone using for implementing google sso?
We have a vite app where we manage user sessions in a django backend - need to replace react-google-login. Open to suggestions!
5 Replies
Do you mean Google OAuth? If that the case NextAuth, it also works for Vite https://github.com/nextauthjs/next-auth
GitHub
GitHub - nextauthjs/next-auth: Authentication for the Web.
Authentication for the Web. Contribute to nextauthjs/next-auth development by creating an account on GitHub.
Here's a plugin that works with it too https://vite-plugin-ssr.com/NextAuth.js
ooo what. it is not intuive to me that next auth would work for a non-next app
thank you! hahaha
Since you mentioned your app is Django I think a good Python option is Authlib https://authlib.org
Authlib
Authlib
The ultimate Python library in building OAuth and OpenID Connect servers. From specification implementations to Flask and Django integrations.
thank you much!