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
JacobMGEvans
JacobMGEvans17mo ago
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.
JacobMGEvans
JacobMGEvans17mo ago
Here's a plugin that works with it too https://vite-plugin-ssr.com/NextAuth.js
char
char17mo ago
ooo what. it is not intuive to me that next auth would work for a non-next app thank you! hahaha
Ramazan
Ramazan17mo ago
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.
char
char17mo ago
thank you much!