mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[vimeo] Fix login token (fixes #5082)
This commit is contained in:
		| @@ -38,7 +38,7 @@ class VimeoBaseInfoExtractor(InfoExtractor): | ||||
|         self.report_login() | ||||
|         login_url = 'https://vimeo.com/log_in' | ||||
|         webpage = self._download_webpage(login_url, None, False) | ||||
|         token = self._search_regex(r'xsrft = \'(.*?)\'', webpage, 'login token') | ||||
|         token = self._search_regex(r'xsrft":"(.*?)"', webpage, 'login token') | ||||
|         data = urlencode_postdata({ | ||||
|             'email': username, | ||||
|             'password': password, | ||||
| @@ -177,7 +177,7 @@ class VimeoIE(VimeoBaseInfoExtractor): | ||||
|         password = self._downloader.params.get('videopassword', None) | ||||
|         if password is None: | ||||
|             raise ExtractorError('This video is protected by a password, use the --video-password option', expected=True) | ||||
|         token = self._search_regex(r'xsrft = \'(.*?)\'', webpage, 'login token') | ||||
|         token = self._search_regex(r'xsrft":"(.*?)"', webpage, 'login token') | ||||
|         data = urlencode_postdata({ | ||||
|             'password': password, | ||||
|             'token': token, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user