mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00:00
[vimeo] Fix password protected videos (Closes #7451)
This commit is contained in:
parent
82393e2bb2
commit
3d9c4bf09a
1 changed files with 1 additions and 1 deletions
|
@ -217,7 +217,7 @@ def _verify_video_password(self, url, video_id, webpage):
|
|||
url = url.replace('http://', 'https://')
|
||||
password_request = compat_urllib_request.Request(url + '/password', data)
|
||||
password_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
|
||||
password_request.add_header('Cookie', 'clip_test2=1; vuid=%s' % vuid)
|
||||
password_request.add_header('Cookie', 'clip_test_v2=0; vuid=%s' % vuid)
|
||||
password_request.add_header('Referer', url)
|
||||
return self._download_webpage(
|
||||
password_request, video_id,
|
||||
|
|
Loading…
Reference in a new issue