We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6042d7e commit fa5969dCopy full SHA for fa5969d
tikhub/client/client.py
@@ -61,7 +61,10 @@ def __init__(self,
61
# API Client
62
self.client = APIClient(
63
base_url=self.base_url,
64
- client_headers={"Authorization": f"Bearer {self.api_key}"},
+ client_headers={
65
+ "User-Agent": "TikHub-API-SDK-Python/1.11.6",
66
+ "Authorization": f"Bearer {self.api_key}"
67
+ },
68
proxies=proxies,
69
max_retries=max_retries,
70
max_connections=max_connections,
0 commit comments