Added Extra Scopes to NoTwitch Twitch_Connection

Just temporarily adds a TON of scopes so that the Twitch connection can access stuff while we figure out dynamic scopes.
This commit is contained in:
Eroax 2024-02-12 00:37:57 -07:00
parent 6540e30552
commit 02001535d9

View file

@ -17,7 +17,7 @@ signal chat_received_rich(chat_dict)
@export var redirect_port := "8000" @export var redirect_port := "8000"
var auth_url := "https://id.twitch.tv/oauth2/authorize?response_type=token&" var auth_url := "https://id.twitch.tv/oauth2/authorize?response_type=token&"
var auth_scopes : Array[String] = ["chat:read", "chat:edit", "channel:read:redemptions"] var auth_scopes : Array[String] = ["chat:read", "chat:edit", "channel:manage:redemptions", "bits:read", "channel:read:goals", "channel:manage:polls", "channel:read:hype_train", "channel:manage:predictions", "moderator:read:followers", "user:read:chat", "channel:read:subscriptions", "channel:moderate", "channel:read:charity", "moderator:read:shield_mode", "moderator:manage:shoutouts"]
var auth_server : TCPServer var auth_server : TCPServer