[vimeo] Pass Referer for check-password request
This commit is contained in:
parent
09a9fadb84
commit
bdbb8530c7
1 changed files with 2 additions and 2 deletions
|
@ -282,10 +282,10 @@ class VimeoIE(VimeoBaseInfoExtractor):
|
||||||
pass_url = url + '/check-password'
|
pass_url = url + '/check-password'
|
||||||
password_request = sanitized_Request(pass_url, data)
|
password_request = sanitized_Request(pass_url, data)
|
||||||
password_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
|
password_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
|
||||||
|
password_request.add_header('Referer', url)
|
||||||
return self._download_json(
|
return self._download_json(
|
||||||
password_request, video_id,
|
password_request, video_id,
|
||||||
'Verifying the password',
|
'Verifying the password', 'Wrong password')
|
||||||
'Wrong password')
|
|
||||||
|
|
||||||
def _real_initialize(self):
|
def _real_initialize(self):
|
||||||
self._login()
|
self._login()
|
||||||
|
|
Loading…
Reference in a new issue