diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-09-16 02:28:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-16 02:28:28 +0800 |
commit | a88d461dff67205fcec684426afbcbeb4b0e7cf5 (patch) | |
tree | f5a0ba57242b84aafba2c37740855f9169f47a8d /youtube_dl/extractor/common.py | |
parent | a4245acef85ac2414e77cf2cda4cb39adb617241 (diff) | |
parent | feee8d32e45c9521426cf4a089c70f37542f0065 (diff) |
Merge pull request #14225 from Tithen-Firion/openload-phantomjs-method
Openload phantomjs method
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r-- | youtube_dl/extractor/common.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 74d30ec50..317a9a76f 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -2449,10 +2449,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): |