mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 20:59:24 +01:00
[viewster] use geo verifcation headers
This commit is contained in:
parent
fc320a40d9
commit
31615ac279
@ -86,7 +86,9 @@ class ViewsterIE(InfoExtractor):
|
|||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
# Get 'api_token' cookie
|
# Get 'api_token' cookie
|
||||||
self._request_webpage(HEADRequest('http://www.viewster.com/'), video_id)
|
self._request_webpage(
|
||||||
|
HEADRequest('http://www.viewster.com/'),
|
||||||
|
video_id, headers=self.geo_verification_headers())
|
||||||
cookies = self._get_cookies('http://www.viewster.com/')
|
cookies = self._get_cookies('http://www.viewster.com/')
|
||||||
self._AUTH_TOKEN = compat_urllib_parse_unquote(cookies['api_token'].value)
|
self._AUTH_TOKEN = compat_urllib_parse_unquote(cookies['api_token'].value)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user