1
0
Fork 0
mirror of https://gitlab.com/dstftw/youtube-dl.git synced 2020-11-16 09:42:26 +00:00

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

This commit is contained in:
Sergey M․ 2020-06-06 00:57:40 +07:00
parent ce3735df02
commit b37e47a3f9
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -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))