You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.en.md
+11-8
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ After you complete the above steps, you can copy your API Token, then return to
39
39
40
40
> Used in HTTP requests
41
41
42
-
If you want to carry the API Token in the HTTP request, please read the format below carefully, and you need to carry an API token in the request header.`Authorization`Field, below I will give an example of JSON as header:
42
+
If you want to carry the API Token in the HTTP request, please read the format below carefully, and you need to carry an API Token in the request header.`Authorization`Field, below I will give an example of JSON as header:
43
43
44
44
{
45
45
@@ -49,7 +49,7 @@ If you want to carry the API Token in the HTTP request, please read the format b
49
49
50
50
> Remark
51
51
52
-
Please do not share your API Token, as this may cause you to lose property and other problems. We strongly recommend using a different API Token for each of your projects, and don’t forget to check the corresponding box when creating the API Token.`Scopes`, otherwise you will encounter insufficient permissions when requesting.
52
+
Please do not share your API Token, as this may cause you property damage and other problems. We strongly recommend using a different API Token for each of your projects, and don’t forget to check the corresponding box when creating the API Token.`Scopes`, otherwise you will encounter insufficient permissions when requesting.
53
53
54
54
* * *
55
55
@@ -110,28 +110,31 @@ print(all_endpoints_info)
110
110
- Available properties in Client
111
111
112
112
```python
113
-
# TikHub
113
+
# TikHub User | TikHub用户接口
114
114
self.TikHubUser = TikHubUser(self.client)
115
115
116
-
# Douyin
116
+
# Douyin | 抖音
117
117
self.DouyinWeb = DouyinWeb(self.client)
118
118
self.DouyinAppV1 = DouyinAppV1(self.client)
119
119
self.DouyinAppV2 = DouyinAppV2(self.client)
120
120
self.DouyinAppV3 = DouyinAppV3(self.client)
121
121
122
-
# TikTok
122
+
# TikTok | TikTok
123
123
self.TikTokWeb = TikTokWeb(self.client)
124
124
self.TikTokAppV2 = TikTokAppV2(self.client)
125
125
self.TikTokAppV3 = TikTokAppV3(self.client)
126
126
127
-
# Instagram
127
+
# Instagram | Instagram
128
128
self.InstagramWeb = InstagramWeb(self.client)
129
129
130
-
# Weibo
130
+
# Weibo | 微博
131
131
self.WeiboWeb = WeiboWeb(self.client)
132
132
133
-
# Captcha Solver
133
+
# Captcha Solver | 验证码解决器
134
134
self.CaptchaSolver = CaptchaSolver(self.client)
135
+
136
+
# Xigua Video APP V2 | 西瓜视频APP V2
137
+
self.XiguaAppV2 = XiguaAppV2(self.client)
135
138
```
136
139
137
140
- use`DouyinAppV1`of`fetch_one_video`The method calls the interface to obtain single video data.
0 commit comments