[curiositystream] Get auth_token from cookie (#3836)

Closes #3753
Authored by: mnn
This commit is contained in:
monnef 2022-05-27 01:02:20 +02:00 committed by GitHub
parent 7879e79d11
commit d2ff2c91bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,11 @@ class CuriosityStreamBaseIE(InfoExtractor):
def _call_api(self, path, video_id, query=None):
headers = {}
if not self._auth_token:
auth_cookie = self._get_cookies('https://curiositystream.com').get('auth_token')
if auth_cookie:
self.write_debug('Obtained auth_token cookie')
self._auth_token = cookie.value
if self._auth_token:
headers['X-Auth-Token'] = self._auth_token
result = self._download_json(