[xfileshare] Modernize and pass referrer

pull/13351/head
Sergey M․ 7 years ago
parent 624bd0104c
commit 16bc958287
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

@ -130,12 +130,12 @@ class XFileShareIE(InfoExtractor):
if countdown:
self._sleep(countdown, video_id)
post = urlencode_postdata(fields)
req = sanitized_Request(url, post)
req.add_header('Content-type', 'application/x-www-form-urlencoded')
webpage = self._download_webpage(req, video_id, 'Downloading video page')
webpage = self._download_webpage(
url, video_id, 'Downloading video page',
data=urlencode_postdata(fields), headers={
'Referer': url,
'Content-type': 'application/x-www-form-urlencoded',
})
title = (self._search_regex(
(r'style="z-index: [0-9]+;">([^<]+)</span>',

Loading…
Cancel
Save