[curiositystream] Get `auth_token` from cookie (#3836)

Closes #3753
Authored by: mnn
pull/3892/head
monnef 2 years ago committed by GitHub
parent 7879e79d11
commit d2ff2c91bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save