Google Auth fails for some users
Last edited: 1/17/2025
Google Auth fails for some users
If you start facing either of these errors:
_10error=server_error&error_description=Error+getting+user+email+from+external+provider_10_10Missing required authentication credential._10_10Expected OAuth 2 access token, login cookie or other valid authentication credential._10_10See https://developers.google.com/identity/sign-in/web/devconsole-project.\",\n \"status\": \"UNAUTHENTICATED\"_10_10 }_10 "level":"error","method":"GET","msg":"500: Error getting user email from external provider","path":"/callback","referer":"https://accounts.google.com/","remote_addr":"x.x.X.x","time":"2023-06-06T21:46:11Z","timestamp":"2023-06-06T21:46:11Z"}
It is happening because some Google Suite requires the explicit request of email Auth Scopes:
https://www.googleapis.com/auth/userinfo.email
_10const { data, error } = await supabase.auth.signInWithOAuth({_10 provider: 'google'_10 options: {_10 scopes: 'https://www.googleapis.com/auth/userinfo.email'_10 }_10})