diff --git a/backend/routers/google_router.py b/backend/routers/google_router.py index 42f908d..7312007 100644 --- a/backend/routers/google_router.py +++ b/backend/routers/google_router.py @@ -21,7 +21,7 @@ GOOGLE_CLIENT_ID = os.environ.get("GOOGLE_CLIENT_ID", "") GOOGLE_CLIENT_SECRET = os.environ.get("GOOGLE_CLIENT_SECRET", "") GOOGLE_REDIRECT_URI = os.environ.get("GOOGLE_REDIRECT_URI", "") -SCOPES = "https://www.googleapis.com/auth/calendar" +SCOPES = "https://www.googleapis.com/auth/calendar https://www.googleapis.com/auth/userinfo.email" AUTH_URL = "https://accounts.google.com/o/oauth2/v2/auth" TOKEN_URL = "https://oauth2.googleapis.com/token" CALENDAR_API = "https://www.googleapis.com/calendar/v3"