[vimeo] one token overlooked

This commit is contained in:
pulpe 2015-04-22 23:55:19 +02:00
parent 7513f298b0
commit 14a2d6789f
1 changed files with 1 additions and 1 deletions

View File

@ -439,7 +439,7 @@ class VimeoChannelIE(InfoExtractor):
name="([^"]+)"\s+
value="([^"]*)"
''', login_form))
token = self._search_regex(r'xsrft = \'(.*?)\'', webpage, 'login token')
token = self._search_regex(r'xsrft":"(.*?)"', webpage, 'login token')
fields['token'] = token
fields['password'] = password
post = urlencode_postdata(fields)