We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21e4dc7 commit 0544c45Copy full SHA for 0544c45
README.md
@@ -21,7 +21,11 @@ pip install justoneapi
21
```python
22
from justoneapi.client import JustOneAPIClient
23
24
+# By default, the client uses the "cn" (Mainland China) environment.
25
client = JustOneAPIClient(token="your_token")
26
+# If you are located outside Mainland China and experience slow responses,
27
+# you can switch to the "global" environment for better performance:
28
+# client = JustOneAPIClient(token="your_token", env="global")
29
30
# Example: Get Douyin Video detail
31
result, data, message = client.douyin.get_video_detail_v2(video_id="7428906452091145483")
0 commit comments