diff options
author | Remita Amine <remitamine@gmail.com> | 2017-11-08 20:30:05 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2017-11-08 20:30:05 +0100 |
commit | cc6a960e134614f8af2a42dcd8bf146d63638a3c (patch) | |
tree | 3d966ca6318aa7861e2a4401adcdfebbce2929cf /youtube_dl/extractor/crunchyroll.py | |
parent | f34b841b51be6872914ffe17b210c54b0d823c3c (diff) |
use older login method(closes #11572)
Diffstat (limited to 'youtube_dl/extractor/crunchyroll.py')
-rw-r--r-- | youtube_dl/extractor/crunchyroll.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/youtube_dl/extractor/crunchyroll.py b/youtube_dl/extractor/crunchyroll.py index 8bdaf0c2c..18ef3da10 100644 --- a/youtube_dl/extractor/crunchyroll.py +++ b/youtube_dl/extractor/crunchyroll.py @@ -43,6 +43,17 @@ class CrunchyrollBaseIE(InfoExtractor): if username is None: 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( self._LOGIN_URL, None, 'Downloading login page') @@ -86,6 +97,7 @@ class CrunchyrollBaseIE(InfoExtractor): raise ExtractorError('Unable to login: %s' % error, expected=True) raise ExtractorError('Unable to log in') + ''' def _real_initialize(self): self._login() |