diff options
author | Dan Walker <dwalker@tripwire.com> | 2020-10-30 08:31:34 -0700 |
---|---|---|
committer | Dan Walker <dwalker@tripwire.com> | 2020-10-30 08:31:34 -0700 |
commit | 3086aa194fcacd4e12e9b266ec046c991bd07f2a (patch) | |
tree | 7207d4f1c8a6c08d7ed926921bb78a958bab5c33 | |
parent | 4932ba4aecf653166f04211680a48624b48f030f (diff) | |
download | hypervideo-pre-3086aa194fcacd4e12e9b266ec046c991bd07f2a.tar.lz hypervideo-pre-3086aa194fcacd4e12e9b266ec046c991bd07f2a.tar.xz hypervideo-pre-3086aa194fcacd4e12e9b266ec046c991bd07f2a.zip |
Added Comcast_SSO fix
This fix had been proposed on yt-dl for a lengthy period of time but was never merged. It has been thoroughly tested but a large section of the community.
-rw-r--r-- | youtube_dlc/extractor/adobepass.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/youtube_dlc/extractor/adobepass.py b/youtube_dlc/extractor/adobepass.py index 38dca1b0a..649f9940f 100644 --- a/youtube_dlc/extractor/adobepass.py +++ b/youtube_dlc/extractor/adobepass.py @@ -1438,6 +1438,13 @@ class AdobePassIE(InfoExtractor): provider_redirect_page, 'oauth redirect') self._download_webpage( oauth_redirect_url, video_id, 'Confirming auto login') + elif 'automatically signed in with' in provider_redirect_page: + # Seems like comcast is rolling up new way of automatically signing customers + oauth_redirect_url = self._html_search_regex( + r'continue:\s*"(https://oauth.xfinity.com/oauth/authorize\?.+)"', provider_redirect_page, + 'oauth redirect (signed)') + # Just need to process the request. No useful data comes back + self._download_webpage(oauth_redirect_url, video_id, 'Confirming auto login') else: if '<form name="signin"' in provider_redirect_page: provider_login_page_res = provider_redirect_page_res |