mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
parent
3b58d94f71
commit
30a453884e
1 changed files with 2 additions and 1 deletions
|
@ -11,6 +11,7 @@
|
|||
determine_ext,
|
||||
int_or_none,
|
||||
parse_iso8601,
|
||||
HEADRequest,
|
||||
)
|
||||
|
||||
|
||||
|
@ -73,7 +74,7 @@ def _download_json(self, url, video_id, note='Downloading JSON metadata', fatal=
|
|||
def _real_extract(self, url):
|
||||
video_id = self._match_id(url)
|
||||
# Get 'api_token' cookie
|
||||
self._request_webpage(url, video_id)
|
||||
self._request_webpage(HEADRequest(url), video_id)
|
||||
cookies = self._get_cookies(url)
|
||||
self._AUTH_TOKEN = compat_urllib_parse_unquote(cookies['api_token'].value)
|
||||
|
||||
|
|
Loading…
Reference in a new issue