mirror of
https://github.com/imgyh/tiktok.git
synced 2025-04-05 23:20:43 +08:00
feat(live): 直播解析支持APP端分享链接
This commit is contained in:
parent
39f3920e54
commit
e4a0ebba4f
@ -93,6 +93,14 @@ class TikTok(object):
|
||||
# 获取原声 id
|
||||
key = re.findall('music/(\d+)?', urlstr)[0]
|
||||
key_type = "music"
|
||||
elif "/webcast/reflow/" in urlstr:
|
||||
key1 = re.findall('reflow/(\d+)?', urlstr)[0]
|
||||
url = self.urls.LIVE2 + self.utils.getXbogus(
|
||||
f'live_id=1&room_id={key1}&app_id=1128')
|
||||
res = requests.get(url, headers=self.headers)
|
||||
resjson = json.loads(res.text)
|
||||
key = resjson['data']['room']['owner']['web_rid']
|
||||
key_type = "live"
|
||||
elif "live.douyin.com" in r.url:
|
||||
key = r.url.replace('https://live.douyin.com/', '')
|
||||
key_type = "live"
|
||||
|
@ -70,6 +70,7 @@ class Urls(object):
|
||||
|
||||
# 直播
|
||||
self.LIVE = 'https://live.douyin.com/webcast/room/web/enter/?'
|
||||
self.LIVE2 = 'https://webcast.amemv.com/webcast/room/reflow/info/?'
|
||||
|
||||
# 音乐
|
||||
self.MUSIC = 'https://www.douyin.com/aweme/v1/web/music/aweme/?'
|
||||
|
Loading…
x
Reference in New Issue
Block a user