[vimeo] Fix password protected videos (Closes #6507)

This commit is contained in:
Sergey M․ 2015-08-09 17:10:40 +06:00
parent 08df685fe7
commit 12bb392a0f
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ class VimeoIE(VimeoBaseInfoExtractor):
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', 'xsrft=%s' % token)
password_request.add_header('Referer', url)
return self._download_webpage(
password_request, video_id,
'Verifying the password', 'Wrong password')