youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 12bb392a0ff8adbde2ced75b0c4976d0aabc7f4f
parent 08df685fe7764ef9f7dc271075340e4effc5e621
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun,  9 Aug 2015 17:10:40 +0600

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

Diffstat:
Myoutube_dl/extractor/vimeo.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py @@ -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')