mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-16 16:05:53 +00:00
Added Cookie Functionality to Hotstar
This commit is contained in:
parent
ab174d33b8
commit
1334304793
1 changed files with 3 additions and 2 deletions
|
@ -19,7 +19,7 @@ from ..utils import (
|
|||
int_or_none,
|
||||
str_or_none,
|
||||
try_get,
|
||||
url_or_none
|
||||
url_or_none,
|
||||
)
|
||||
|
||||
|
||||
|
@ -35,7 +35,8 @@ class HotStarBaseIE(InfoExtractor):
|
|||
h.update(headers)
|
||||
|
||||
return self._download_json(
|
||||
'https://api.hotstar.com/' + path,video_id, headers=h, query=query, data=data)
|
||||
'https://api.hotstar.com/' + path,
|
||||
video_id, headers=h, query=query, data=data)
|
||||
|
||||
def _call_api(self, path, video_id, query_name='contentId'):
|
||||
response = self._call_api_impl(path, video_id, {
|
||||
|
|
Loading…
Reference in a new issue