1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-16 01:59:33 +00:00

[youtube] Fix authentication (2) (Closes #10392)

This commit is contained in:
Sergey M․ 2016-08-24 01:29:50 +07:00
parent 1212e9972f
commit 05bddcc512
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -94,6 +94,7 @@ class YoutubeBaseInfoExtractor(InfoExtractor):
login_form = self._hidden_inputs(login_page)
login_form.update({
'checkConnection': 'youtube',
'Email': username,
'Passwd': password,
})