From 2e41a08bd9407be8e6adf2bf899921850091ff1e Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Tue, 18 Feb 2025 20:33:04 +0100 Subject: [PATCH] Update --- src/modules/stream_notifications/twitch/authorize.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/modules/stream_notifications/twitch/authorize.py b/src/modules/stream_notifications/twitch/authorize.py index 08f7c6c..c66e729 100644 --- a/src/modules/stream_notifications/twitch/authorize.py +++ b/src/modules/stream_notifications/twitch/authorize.py @@ -7,7 +7,13 @@ from .token_storage import TokenStorage SCOPES = [ - scope for scope in AuthScope + AuthScope.CHAT_READ + , + AuthScope.CHANNEL_BOT, + + AuthScope.USER_BOT, + AuthScope.USER_READ_CHAT, + AuthScope.USER_WRITE_CHAT, ]