diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-02-28 22:59:55 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-02-28 22:59:55 +0600 |
commit | 0d103de3b0b03c5027f0015327c2c44b9073513a (patch) | |
tree | ff5aec8fb181376c81ba86fcfd913de57cbd31a4 /youtube_dl | |
parent | a0090691d04dd8bd449877790c4f9fde46841b35 (diff) |
[twitch] Pass api_token along with every request (Closes #3986)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/twitch.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py index 4b0d8988d..4b0ce54df 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -34,7 +34,15 @@ class TwitchBaseIE(InfoExtractor): expected=True) def _download_json(self, url, video_id, note='Downloading JSON metadata'): - response = super(TwitchBaseIE, self)._download_json(url, video_id, note) + headers = { + 'Referer': 'http://api.twitch.tv/crossdomain/receiver.html?v=2', + 'X-Requested-With': 'XMLHttpRequest', + } + for cookie in self._downloader.cookiejar: + if cookie.name == 'api_token': + headers['Twitch-Api-Token'] = cookie.value + request = compat_urllib_request.Request(url, headers=headers) + response = super(TwitchBaseIE, self)._download_json(request, video_id, note) self._handle_error(response) return response |