mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 11:42:43 +01:00
Use explicitly set Referer header for downloading
This commit is contained in:
parent
b4461b6ebe
commit
1d0e49e1c7
@ -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 'referer' in info_dict:
|
||||
headers['Referer'] = info_dict['referer']
|
||||
basic_request = compat_urllib_request.Request(url, None, headers)
|
||||
request = compat_urllib_request.Request(url, None, headers)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user