mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 17:18:01 +01:00
Merge remote-tracking branch 'dstftw/download-referer-header' (closes #2628)
This commit is contained in:
commit
98acdc895b
2 changed files with 3 additions and 0 deletions
|
@ -23,6 +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 '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,4 +51,5 @@ def _real_extract(self, url):
|
|||
'url': video_url,
|
||||
'title': title,
|
||||
'thumbnail': thumbnail,
|
||||
'http_referer': 'http://www.auengine.com/flowplayer/flowplayer.commercial-3.2.14.swf',
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue