Browse Source

[twitch:stream] Expect 400 and 410 HTTP errors from API

Sergey M․ 5 years ago
parent
commit
b37e47a3f9
1 changed files with 4 additions and 1 deletions
  1. 4 1
      youtube_dl/extractor/twitch.py

+ 4 - 1
youtube_dl/extractor/twitch.py

@@ -56,7 +56,10 @@ class TwitchBaseIE(InfoExtractor):
             'Accept': 'application/vnd.twitchtv.v5+json; charset=UTF-8',
             'Client-ID': self._CLIENT_ID,
         })
-        kwargs['headers'] = headers
+        kwargs.update({
+            'headers': headers,
+            'expected_status': (400, 410),
+        })
         response = self._download_json(
             '%s/%s' % (self._API_BASE, path), item_id,
             *args, **compat_kwargs(kwargs))