summary refs log tree commit diff
diff options
context:
space:
mode:
authorphan-ctrl <54398886+phan-ctrl@users.noreply.github.com>2019-08-27 10:16:04 +0700
committerSergey M <dstftw@gmail.com>2019-08-27 10:16:04 +0700
commitd1fcf255c5402d75a3f7b450bd1e795196d5817a (patch)
treed11b8487e16f7311f48fe165a9499da72219c9ad
parent183a18c4e7dad802404e932f3a7c33fad8db7891 (diff)
downloadyoutube-dl-d1fcf255c5402d75a3f7b450bd1e795196d5817a.tar.gz
youtube-dl-d1fcf255c5402d75a3f7b450bd1e795196d5817a.tar.xz
youtube-dl-d1fcf255c5402d75a3f7b450bd1e795196d5817a.zip
[safari] Fix authentication (closes #22161) (#22184)
-rw-r--r--youtube_dl/extractor/safari.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/youtube_dl/extractor/safari.py b/youtube_dl/extractor/safari.py
index 8d4806794..bd9ee1647 100644
--- a/youtube_dl/extractor/safari.py
+++ b/youtube_dl/extractor/safari.py
@@ -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',)