浏览代码

[safari] Fix authentication (closes #22161) (#22184)

phan-ctrl 6 年之前
父节点
当前提交
d1fcf255c5
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. 4 3
      youtube_dl/extractor/safari.py

+ 4 - 3
youtube_dl/extractor/safari.py

@@ -68,9 +68,10 @@ class SafariBaseIE(InfoExtractor):
             raise ExtractorError(
             raise ExtractorError(
                 'Unable to login: %s' % credentials, expected=True)
                 'Unable to login: %s' % credentials, expected=True)
 
 
-        # oreilly serves two same groot_sessionid cookies in Set-Cookie header
-        # and expects first one to be actually set
-        self._apply_first_set_cookie_header(urlh, 'groot_sessionid')
+        # oreilly serves two same instances of the following cookies
+        # in Set-Cookie header and expects first one to be actually set
+        for cookie in ('groot_sessionid', 'orm-jwt', 'orm-rt'):
+            self._apply_first_set_cookie_header(urlh, cookie)
 
 
         _, urlh = self._download_webpage_handle(
         _, urlh = self._download_webpage_handle(
             auth.get('redirect_uri') or next_uri, None, 'Completing login',)
             auth.get('redirect_uri') or next_uri, None, 'Completing login',)