mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-02-06 02:00:19 +00:00
parent
2574721a81
commit
cc1e88aa5d
@ -1382,6 +1382,14 @@ class AdobePassIE(InfoExtractor):
|
|||||||
# Just need to process the request. No useful data comes back
|
# Just need to process the request. No useful data comes back
|
||||||
self._download_webpage(
|
self._download_webpage(
|
||||||
oauth_redirect_url, video_id, 'Confirming auto login')
|
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://login.comcast.net/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:
|
else:
|
||||||
if '<form name="signin"' in provider_redirect_page:
|
if '<form name="signin"' in provider_redirect_page:
|
||||||
# already have the form, just fill it
|
# already have the form, just fill it
|
||||||
|
Loading…
Reference in New Issue
Block a user