Google OAuth¶
Setup¶
-
Create a new project on Google Cloud.
-
Navigate to APIs & Services > OAuth consent screen.
-
Configure the following:
- Add the Privacy Policy and Terms of Service URLs.
- Add these scopes:
userinfo.email
&userinfo.profile
- Add your email as a test user
- Save
-
Go to Credentials > + Create Credentials > OAuth client ID
-
Select Web Application and configure:
- Add to Authorized JavaScript origins:
http://localhost:8000
https://your-site.com
- Add to Authorized redirect URIs:
http://localhost:8000/complete/google-oauth2/
https://your-site.com/complete/google-oauth2/
- Note: Include your subdomain (like www) if you use one. Don't forget the trailing slash
/
- Click Create
- Add to Authorized JavaScript origins:
-
Copy your credentials to
.env.prod
(or.env.local
for local development):SOCIAL_AUTH_GOOGLE_OAUTH2_KEY
= Client IDSOCIAL_AUTH_GOOGLE_OAUTH2_SECRET
= Client Secret
-
Return to OAuth Consent Screen and click Publish App
-
Select Prepare for verification and complete any missing fields
About Verification
Google will contact you by email to start verification. You'll need to verify your domain through Google Search Console first.
While waiting for verification:
- Local development: Google login works normally
- Production: Google login works but shows a warning until verified (typically a few days)