Add a no-cache header to GQL

This commit is contained in:
DevilXD
2022-09-16 16:28:47 +02:00
parent efd48a8287
commit a5822fb8ed

View File

@@ -180,6 +180,8 @@ class _AuthState:
headers = {
"Authorization": f"OAuth {self.access_token}",
"Accept": "*/*",
"Pragma": "no-cache",
"Cache-Control": "no-cache",
"Origin": "https://www.twitch.tv",
"Referer": "https://www.twitch.tv/",
"Client-Id": CLIENT_ID,