forked from wbt5/real-url
-
Notifications
You must be signed in to change notification settings - Fork 0
/
showself.py
64 lines (55 loc) · 1.96 KB
/
showself.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# 秀色直播:https://www.showself.com/
from urllib.parse import urlencode
import requests
import time
import hashlib
class ShowSelf:
def __init__(self, rid):
self.rid = rid
def get_real_url(self):
with requests.Session() as s:
res = s.get('https://service.showself.com/v2/custuser/visitor').json()
uid = res['data']['uid']
accesstoken = sessionid = res['data']['sessionid']
params = {
'accessToken': accesstoken,
'tku': uid,
'_st1': int(time.time() * 1000)
}
payload = {
'groupid': '999',
'roomid': self.rid,
'sessionid': sessionid,
'sessionId': sessionid
}
data = dict(params, **payload)
data = urlencode(sorted(data.items(), key=lambda d: d[0])) + 'sh0wselfh5'
_ajaxData1 = hashlib.md5(data.encode('utf-8')).hexdigest()
payload['_ajaxData1'] = _ajaxData1
url = 'https://service.showself.com/v2/rooms/{}/members?{}'.format(self.rid, urlencode(params))
with requests.Session() as s:
res = s.post(url, json=payload)
if res.status_code == 200:
res = res.json()
statuscode = res['status']['statuscode']
if statuscode == '0':
if res['data']['roomInfo']['live_status'] == '1':
anchor, = res['data']['roomInfo']['anchor']
real_url = anchor['media_url']
return real_url
else:
raise Exception('未开播')
else:
raise Exception('房间不存在')
else:
raise Exception('参数错误')
def get_real_url(rid):
try:
ss = ShowSelf(rid)
return ss.get_real_url()
except Exception as e:
print('Exception:', e)
return False
if __name__ == '__main__':
rid = input('输入秀色直播房间号:\n')
print(get_real_url(rid))