mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
Revert "use older login method(closes #11572)"
This reverts commit cc6a960e13
.
This commit is contained in:
parent
398e1e21d6
commit
dca0e0040a
|
@ -56,17 +56,6 @@ class CrunchyrollBaseIE(InfoExtractor):
|
||||||
if username is None:
|
if username is None:
|
||||||
return
|
return
|
||||||
|
|
||||||
self._download_webpage(
|
|
||||||
'https://www.crunchyroll.com/?a=formhandler',
|
|
||||||
None, 'Logging in', 'Wrong login info',
|
|
||||||
data=urlencode_postdata({
|
|
||||||
'formname': 'RpcApiUser_Login',
|
|
||||||
'next_url': 'https://www.crunchyroll.com/acct/membership',
|
|
||||||
'name': username,
|
|
||||||
'password': password,
|
|
||||||
}))
|
|
||||||
|
|
||||||
'''
|
|
||||||
login_page = self._download_webpage(
|
login_page = self._download_webpage(
|
||||||
self._LOGIN_URL, None, 'Downloading login page')
|
self._LOGIN_URL, None, 'Downloading login page')
|
||||||
|
|
||||||
|
@ -110,7 +99,6 @@ class CrunchyrollBaseIE(InfoExtractor):
|
||||||
raise ExtractorError('Unable to login: %s' % error, expected=True)
|
raise ExtractorError('Unable to login: %s' % error, expected=True)
|
||||||
|
|
||||||
raise ExtractorError('Unable to log in')
|
raise ExtractorError('Unable to log in')
|
||||||
'''
|
|
||||||
|
|
||||||
def _real_initialize(self):
|
def _real_initialize(self):
|
||||||
self._login()
|
self._login()
|
||||||
|
|
Loading…
Reference in a new issue