浏览代码

use older login method(closes #11572)

Remita Amine 7 年之前
父节点
当前提交
cc6a960e13
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. 12 0
      youtube_dl/extractor/crunchyroll.py

+ 12 - 0
youtube_dl/extractor/crunchyroll.py

@@ -43,6 +43,17 @@ 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')
 
 
@@ -86,6 +97,7 @@ 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()