aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/downloader/http.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-03-25 21:22:27 +0700
committerSergey M․ <dstftw@gmail.com>2014-03-25 21:22:27 +0700
commit1d0e49e1c7a0c7490df508eb1a2d764cd3cb1a6b (patch)
tree2bf383cee71dfb47abf71679502de6c4b1024070 /youtube_dl/downloader/http.py
parentb4461b6ebe1276e98bc7566cc6a706ed26d3488b (diff)
downloadyoutube-dl-1d0e49e1c7a0c7490df508eb1a2d764cd3cb1a6b.tar.xz
Use explicitly set Referer header for downloading
Diffstat (limited to 'youtube_dl/downloader/http.py')
-rw-r--r--youtube_dl/downloader/http.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py
index 348097dab..16a2dce3f 100644
--- a/youtube_dl/downloader/http.py
+++ b/youtube_dl/downloader/http.py
@@ -23,6 +23,8 @@ class HttpFD(FileDownloader):
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)