mirror of https://github.com/yt-dlp/yt-dlp.git
[generic] Follow redirects specified by `Refresh` HTTP header
This commit is contained in:
parent
b1337948eb
commit
84f8101606
|
@ -1270,8 +1270,14 @@ class GenericIE(InfoExtractor):
|
|||
if not found:
|
||||
found = re.search(
|
||||
r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
|
||||
r'(?:[a-z-]+="[^"]+"\s+)*?content="[0-9]{,2};url=\'?([^\'"]+)',
|
||||
r'(?:[a-z-]+="[^"]+"\s+)*?content="[0-9]{,2};\s*(?:URL|url)=\'?([^\'"]+)',
|
||||
webpage)
|
||||
if not found:
|
||||
# Look also in Refresh HTTP header
|
||||
refresh_header = head_response.headers.get('Refresh')
|
||||
if refresh_header:
|
||||
found = re.search(
|
||||
r'[0-9]{,2};\s*(?:URL|url)=(.+)', refresh_header)
|
||||
if found:
|
||||
new_url = found.group(1)
|
||||
self.report_following_redirect(new_url)
|
||||
|
|
Loading…
Reference in New Issue