aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/common.py
diff options
context:
space:
mode:
authorTithen-Firion <tithen.firion.0@gmail.com>2017-04-25 15:12:54 +0200
committerTithen-Firion <tithen.firion.0@gmail.com>2017-04-25 15:12:54 +0200
commit40e41780f1d770a355f01e3c1e6fb09ff392f97e (patch)
tree87c921eb2dd0fc5a28586296f28c379357b869d2 /youtube_dl/extractor/common.py
parentda57ebaf84225240b356530cdf02d12596f0dce8 (diff)
downloadyoutube-dl-40e41780f1d770a355f01e3c1e6fb09ff392f97e.zip
youtube-dl-40e41780f1d770a355f01e3c1e6fb09ff392f97e.tar.gz
youtube-dl-40e41780f1d770a355f01e3c1e6fb09ff392f97e.tar.bz2
[phantomjs] add cookie support
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r--youtube_dl/extractor/common.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index dcc9d62..e54adc9 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -2343,10 +2343,12 @@ class InfoExtractor(object):
self._downloader.report_warning(msg)
return res
- def _set_cookie(self, domain, name, value, expire_time=None):
+ def _set_cookie(self, domain, name, value, expire_time=None, port=None,
+ path='/', secure=False, discard=False, rest={}, **kwargs):
cookie = compat_cookiejar.Cookie(
- 0, name, value, None, None, domain, None,
- None, '/', True, False, expire_time, '', None, None, None)
+ 0, name, value, port, not port is None, domain, True,
+ domain.startswith('.'), path, True, secure, expire_time,
+ discard, None, None, rest)
self._downloader.cookiejar.set_cookie(cookie)
def _get_cookies(self, url):