-
Notifications
You must be signed in to change notification settings - Fork 0
/
first.py
51 lines (44 loc) · 1.66 KB
/
first.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
```
请注意,要使此程序正常工作,需要替换代码中的“你的应用程序ID”、“你的应用程序密钥”和“用户ID”字符串,分别为TikTok应用程序的ID、密钥和要获取直播数据的用户的ID。
此外,还需要确保已经按照TikTok的API文档中的说明,正确地设置了应用程序,并在应用程序中注册了访问令牌。
```
import requests
import json
# 用于获取TikTok API的访问令牌
def get_access_token():
# 用于获取访问令牌的URL
url = 'https://api.tiktok.com/oauth/access_token/'
# 设置请求参数
data = {
'app_id': '你的应用程序ID',
'app_secret': '你的应用程序密钥',
'grant_type': 'client_credential'
}
# 发送请求
response = requests.post(url, data=data)
# 解析响应
access_token = json.loads(response.text)['access_token']
return access_token
# 获取直播数据
def get_live_data(user_id, access_token):
# 用于获取直播数据的URL
url = f'https://api.tiktok.com/lives/v2/user/{user_id}/info/'
# 设置请求参数
params = {
'access_token': access_token
}
# 发送请求
response = requests.get(url, params=params)
# 解析响应
data = json.loads(response.text)['data']
# 输出结果
print(f"用户名: {data['nickname']}")
print(f"直播间标题: {data['title']}")
print(f"观看人数: {data['viewer_count']}")
if __name__ == '__main__':
# 获取访问令牌
access_token = get_access_token()
# 设置要获取直播数据的用户ID
user_id = '用户ID'
# 获取直播数据
get_live_data(user_id, access_token)