mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Replace 'referer' with 'http_referer'
This commit is contained in:
parent
ad0a75db6b
commit
a59e40a1ea
2 changed files with 3 additions and 3 deletions
|
@ -23,8 +23,8 @@ def real_download(self, filename, info_dict):
|
|||
headers = {'Youtubedl-no-compression': 'True'}
|
||||
if 'user_agent' in info_dict:
|
||||
headers['Youtubedl-user-agent'] = info_dict['user_agent']
|
||||
if 'referer' in info_dict:
|
||||
headers['Referer'] = info_dict['referer']
|
||||
if 'http_referer' in info_dict:
|
||||
headers['Referer'] = info_dict['http_referer']
|
||||
basic_request = compat_urllib_request.Request(url, None, headers)
|
||||
request = compat_urllib_request.Request(url, None, headers)
|
||||
|
||||
|
|
|
@ -51,5 +51,5 @@ def _real_extract(self, url):
|
|||
'url': video_url,
|
||||
'title': title,
|
||||
'thumbnail': thumbnail,
|
||||
'referer': 'http://www.auengine.com/flowplayer/flowplayer.commercial-3.2.14.swf',
|
||||
'http_referer': 'http://www.auengine.com/flowplayer/flowplayer.commercial-3.2.14.swf',
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue