High-performance asynchronous API client for TikHub.io.
Supports: Douyin(抖音), TikTok, Xiaohongshu(小红书), Kuaishou(快手), Weibo(微博), Instagram, YouTube(油管), Twitter(X), Captcha Solver(验证码解决器), Temp Mail(临时邮箱).
This API client is auto-generated by OpenAPI Generator.
It allows seamless interaction with the TikHub.io API using a modern C++ SDK.
- API version: V5.2.9
- Package Version: V1.0.0
- Build Date: 2025-03-08
- Base URL:
https://api.tikhub.io
- Namespace:
io.tikhub.client.api
- Model Namespace:
org.openapitools.client.model
- Dependencies:
cpprestsdk (Casablanca)
Useful Links
- 🏠 Home: https://www.tikhub.io
- 👨💻 Github: https://github.com/TikHub
- ⚡ Documents (Swagger UI): https://api.tikhub.io
- 🦊 Documents (Apifox UI): https://docs.tikhub.io
- 🐙 Demo Code (GitHub): https://github.com/TikHub/TikHub-API-Demo
- 📶 API Status: https://monitor.tikhub.io
- 📧 Support: Discord Server
TikHub API requires authentication using an API token. The token should be included in the request headers as follows:
- Header:
Authorization
- Format:
Bearer your_token
- Example:
apiClient->setAuthentication(U("Authorization"), U("Bearer your_token"));
#include <iostream>
#include "ApiClient.h"
#include "api/TikHubUserAPIApi.h"
using namespace io::tikhub::client::api;
int main() {
auto client = std::make_shared<ApiClient>();
client->setBaseUrl(U("https://api.tikhub.io"));
// 设置 API 令牌 / Set API Token
client->setAuthentication(U("Authorization"), U("Bearer your_token"));
TikHubUserAPIApi api(client);
return 0;
}
Ensure you have installed cpprestsdk
.
vcpkg install cpprestsdk cpprestsdk:x64-windows boost-uuid boost-uuid:x64-windows
brew install cpprestsdk
sudo apt-get install libcpprest-dev
cmake -DCPPREST_ROOT=/usr -DCMAKE_CXX_FLAGS="-I/usr/local/opt/openssl/include" -DCMAKE_MODULE_LINKER_FLAGS="-L/usr/local/opt/openssl/lib"
make
- Right-click the project folder → Open in Visual Studio
- Select CMake > Build All
- If CMake is missing, install "Desktop Development with C++" via Visual Studio Installer
This example demonstrates how to use the TikHubUserAPIApi class for calculating API request prices.
#include <iostream>
#include "ApiClient.h"
#include "api/TikHubUserAPIApi.h"
using namespace io::tikhub::client::api;
int main() {
// 创建 API 客户端 / Create API client
auto client = std::make_shared<ApiClient>();
client->setBaseUrl(U("https://api.tikhub.io"));
// 设置 API 令牌 / Set API Token
client->setAuthentication(U("Authorization"), U("Bearer your_token"));
// 初始化 API / Initialize API
TikHubUserAPIApi api(client);
return 0;
}
#include <iostream>
#include "ApiClient.h"
#include "api/TikHubUserAPIApi.h"
using namespace io::tikhub::client::api;
int main() {
// 初始化 API 客户端 / Initialize API client
auto client = std::make_shared<ApiClient>();
client->setBaseUrl(U("https://api.tikhub.io"));
// 设置 API 令牌 / Set API Token
client->setAuthentication(U("Authorization"), U("Bearer your_token"));
// 创建 TikHub API 对象 / Create TikHub API object
TikHubUserAPIApi api(client);
// 发送价格计算请求 / Send price calculation request
pplx::task<void> requestTask = api.calculatePriceApiV1TikhubUserCalculatePriceGet(U("video_download"), 5000)
.then([](std::shared_ptr<ResponseModel> response) {
if (response) {
std::wcout << L"Response: " << response->toJson().serialize() << std::endl;
} else {
std::wcerr << L"Error: No response received." << std::endl;
}
})
.then([](pplx::task<void> previousTask) {
try {
previousTask.get(); // 处理异常 / Handle exception
} catch (const std::exception &e) {
std::cerr << "Exception: " << e.what() << std::endl;
}
});
requestTask.wait(); // 等待任务完成 / Wait for task completion
return 0;
}
#include <iostream>
#include "ApiClient.h"
#include "api/TikHubUserAPIApi.h"
using namespace io::tikhub::client::api;
int main() {
auto client = std::make_shared<ApiClient>();
client->setBaseUrl(U("https://api.tikhub.io"));
// 设置 API 令牌 / Set API Token
client->setAuthentication(U("Authorization"), U("Bearer your_token"));
TikHubUserAPIApi api(client);
// 获取所有 API 端点 / Fetch all API endpoints
pplx::task<void> requestTask = api.getAllEndpointsInfoApiV1TikhubUserGetAllEndpointsInfoGet()
.then([](std::shared_ptr<ResponseModel> response) {
if (response) {
std::wcout << L"Endpoints Info: " << response->toJson().serialize() << std::endl;
} else {
std::wcerr << L"Error: No response received." << std::endl;
}
});
requestTask.wait();
return 0;
}
Endpoint | Description |
---|---|
/api/v1/tikhub/user/calculate_price |
Calculate API price based on usage |
/api/v1/tikhub/user/get_all_endpoints_info |
Retrieve all available API endpoints |
/api/v1/tikhub/user/get_endpoint_info |
Get detailed information about a specific API endpoint |
More endpoints can be found in the folder api
and model
.
If you would like to contribute, fork the repository and create a new branch. Pull requests are welcome!
- Website: TikHub.io
- GitHub: Evil0ctal
- Support Email: [email protected]
This project is licensed under the MIT License - see the LICENSE
file for details.