mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-09 19:00:39 +00:00
[bigo] Fix extractor to not to use form_params
This commit is contained in:
parent
a3eb987e0e
commit
2944835080
@ -2,7 +2,7 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from .common import InfoExtractor
|
||||
from ..utils import ExtractorError
|
||||
from ..utils import ExtractorError, urlencode_postdata
|
||||
|
||||
|
||||
class BigoIE(InfoExtractor):
|
||||
@ -32,7 +32,7 @@ class BigoIE(InfoExtractor):
|
||||
|
||||
info_raw = self._download_json(
|
||||
'https://bigo.tv/studio/getInternalStudioInfo',
|
||||
user_id, form_params={'siteId': user_id})
|
||||
user_id, data=urlencode_postdata({'siteId': user_id}))
|
||||
|
||||
if info_raw.get('code'):
|
||||
raise ExtractorError(
|
||||
|
Loading…
Reference in New Issue
Block a user