diff options
| author | Sergey M․ <dstftw@gmail.com> | 2016-09-15 20:58:02 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2016-09-15 20:58:02 +0700 | 
| commit | 95be29e1c6b7a06ac444d5142582ebece79698ff (patch) | |
| tree | a6e7ac3c956747c2758ba7413aacf393c617b1ab | |
| parent | c035dba19e815eca4a21f17918e96c2e2bd55d6b (diff) | |
[twitch] Fix api calls (Closes #10654, closes #10660)
| -rw-r--r-- | youtube_dl/extractor/twitch.py | 11 | 
1 files changed, 3 insertions, 8 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py index 359a8859c..af6d890b0 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -32,6 +32,7 @@ class TwitchBaseIE(InfoExtractor):      _API_BASE = 'https://api.twitch.tv'      _USHER_BASE = 'https://usher.ttvnw.net'      _LOGIN_URL = 'http://www.twitch.tv/login' +    _CLIENT_ID = 'jzkbprff40iqj646a697cyrvl0zt2m6'      _NETRC_MACHINE = 'twitch'      def _handle_error(self, response): @@ -44,15 +45,9 @@ class TwitchBaseIE(InfoExtractor):                  expected=True)      def _call_api(self, path, item_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          response = self._download_json( -            '%s/%s' % (self._API_BASE, path), item_id, note) +            '%s/%s' % (self._API_BASE, path), item_id, note, +            headers={'Client-ID': self._CLIENT_ID})          self._handle_error(response)          return response  | 
