From 3adb0a3e32fe99446309e50f88bc80960c623167 Mon Sep 17 00:00:00 2001 From: abhishek9686 Date: Mon, 27 May 2024 14:50:55 +0530 Subject: [PATCH] rm additional scopes url --- pro/auth/google.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pro/auth/google.go b/pro/auth/google.go index 9ba403f3..64d503e7 100644 --- a/pro/auth/google.go +++ b/pro/auth/google.go @@ -34,7 +34,7 @@ func initGoogle(redirectURL string, clientID string, clientSecret string) { RedirectURL: redirectURL, ClientID: clientID, ClientSecret: clientSecret, - Scopes: []string{"https://www.googleapis.com/auth/userinfo.email", "https://apps-apis.google.com/a/feeds/groups"}, + Scopes: []string{"https://www.googleapis.com/auth/userinfo.email"}, Endpoint: google.Endpoint, } }