From 2abe357a461c3cc70b84765912cf67b4917e35c1 Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Tue, 19 Nov 2024 20:03:23 +0100 Subject: [PATCH] Fix --- src/modules/web_app/views/auth.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/web_app/views/auth.py b/src/modules/web_app/views/auth.py index 917572e..d88440e 100644 --- a/src/modules/web_app/views/auth.py +++ b/src/modules/web_app/views/auth.py @@ -34,6 +34,7 @@ twitch_oauth = TwithOAuth2( config.TWITCH_CLIENT_SECRET, "https://id.twitch.tv/oauth2/authorize", "https://id.twitch.tv/oauth2/token", + base_scopes=[AuthScope.USER_READ_EMAIL.value], )