mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:35:04 +00:00
[discovery] Use geo verification headers
This commit is contained in:
parent
751e051557
commit
2122d7151d
1 changed files with 4 additions and 3 deletions
|
@ -94,11 +94,12 @@ def _real_extract(self, url):
|
||||||
})['access_token']
|
})['access_token']
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
headers = self.geo_verification_headers()
|
||||||
|
headers['Authorization'] = 'Bearer ' + access_token
|
||||||
|
|
||||||
stream = self._download_json(
|
stream = self._download_json(
|
||||||
'https://api.discovery.com/v1/streaming/video/' + video_id,
|
'https://api.discovery.com/v1/streaming/video/' + video_id,
|
||||||
display_id, headers={
|
display_id, headers=headers)
|
||||||
'Authorization': 'Bearer ' + access_token,
|
|
||||||
})
|
|
||||||
except ExtractorError as e:
|
except ExtractorError as e:
|
||||||
if isinstance(e.cause, compat_HTTPError) and e.cause.code in (401, 403):
|
if isinstance(e.cause, compat_HTTPError) and e.cause.code in (401, 403):
|
||||||
e_description = self._parse_json(
|
e_description = self._parse_json(
|
||||||
|
|
Loading…
Reference in a new issue