[safari] Fix authentication (closes #22161) (#22184)
authorphan-ctrl <54398886+phan-ctrl@users.noreply.github.com>
Tue, 27 Aug 2019 03:16:04 +0000 (10:16 +0700)
committerSergey M <dstftw@gmail.com>
Tue, 27 Aug 2019 03:16:04 +0000 (10:16 +0700)
youtube_dl/extractor/safari.py

index 8d4806794ae5f5e83e667a66447179269b0fb1a7..bd9ee1647d47d47bfc8d8341139c2bf953ecf158 100644 (file)
@@ -68,9 +68,10 @@ class SafariBaseIE(InfoExtractor):
             raise ExtractorError(
                 '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(
             auth.get('redirect_uri') or next_uri, None, 'Completing login',)