diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-03 21:06:36 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-03 21:06:36 +0600 |
commit | 3fa3ff1bc36aaf82ac0a5e880304cb7aae217b9a (patch) | |
tree | ff541905700eb5a66cc29331876c9997246dc6ac /youtube_dl/extractor | |
parent | 0a0110fc6bbd21850e25541fd0bd4b602ce194e2 (diff) |
[vimeo] Fix non-ASCII login
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/vimeo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index fa07bd59c..46fb36f21 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -41,13 +41,13 @@ class VimeoBaseInfoExtractor(InfoExtractor): self.report_login() webpage = self._download_webpage(self._LOGIN_URL, None, False) token, vuid = self._extract_xsrft_and_vuid(webpage) - data = urlencode_postdata({ + data = urlencode_postdata(encode_dict({ 'action': 'login', 'email': username, 'password': password, 'service': 'vimeo', 'token': token, - }) + })) login_request = compat_urllib_request.Request(self._LOGIN_URL, data) login_request.add_header('Content-Type', 'application/x-www-form-urlencoded') login_request.add_header('Cookie', 'vuid=%s' % vuid) |