Skip to content

Commit 0369169

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 80ad844 + 45d4aed commit 0369169

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

README.en.md

+11-8
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ After you complete the above steps, you can copy your API Token, then return to
3939

4040
> Used in HTTP requests
4141
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:
4343

4444
{
4545

@@ -49,7 +49,7 @@ If you want to carry the API Token in the HTTP request, please read the format b
4949

5050
> Remark
5151
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.
5353

5454
* * *
5555

@@ -110,28 +110,31 @@ print(all_endpoints_info)
110110
- Available properties in Client
111111

112112
```python
113-
# TikHub
113+
# TikHub User | TikHub用户接口
114114
self.TikHubUser = TikHubUser(self.client)
115115

116-
# Douyin
116+
# Douyin | 抖音
117117
self.DouyinWeb = DouyinWeb(self.client)
118118
self.DouyinAppV1 = DouyinAppV1(self.client)
119119
self.DouyinAppV2 = DouyinAppV2(self.client)
120120
self.DouyinAppV3 = DouyinAppV3(self.client)
121121

122-
# TikTok
122+
# TikTok | TikTok
123123
self.TikTokWeb = TikTokWeb(self.client)
124124
self.TikTokAppV2 = TikTokAppV2(self.client)
125125
self.TikTokAppV3 = TikTokAppV3(self.client)
126126

127-
# Instagram
127+
# Instagram | Instagram
128128
self.InstagramWeb = InstagramWeb(self.client)
129129

130-
# Weibo
130+
# Weibo | 微博
131131
self.WeiboWeb = WeiboWeb(self.client)
132132

133-
# Captcha Solver
133+
# Captcha Solver | 验证码解决器
134134
self.CaptchaSolver = CaptchaSolver(self.client)
135+
136+
# Xigua Video APP V2 | 西瓜视频APP V2
137+
self.XiguaAppV2 = XiguaAppV2(self.client)
135138
```
136139

137140
- use`DouyinAppV1`of`fetch_one_video`The method calls the interface to obtain single video data.

0 commit comments

Comments
 (0)