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

[noco] Modernize

This commit is contained in:
Sergey M․ 2017-02-24 21:50:13 +07:00
parent f3bc281239
commit ad3033037c
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -69,16 +69,17 @@ class NocoIE(InfoExtractor):
if username is None:
return
login_form = {
'a': 'login',
'cookie': '1',
'username': username,
'password': password,
}
request = sanitized_Request(self._LOGIN_URL, urlencode_postdata(login_form))
request.add_header('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8')
login = self._download_json(request, None, 'Logging in as %s' % username)
login = self._download_json(
self._LOGIN_URL, None, 'Logging in as %s' % username,
data=urlencode_postdata({
'a': 'login',
'cookie': '1',
'username': username,
'password': password,
}),
headers={
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
})
if 'erreur' in login:
raise ExtractorError('Unable to login: %s' % clean_html(login['erreur']), expected=True)