API उदाहरण
यह पृष्ठ विभिन्न प्रोग्रामिंग भाषाओं में TikMatrix स्थानीय API का उपयोग करने के लिए उदाहरण कोड प्रदान करता है।
Python
import requests
import json
BASE_URL = "http://localhost:50809/api/v1"
def check_license():
"""Check if API access is available"""
response = requests.get(f"{BASE_URL}/license/check")
return response.json()
def create_task(serials, script_name, script_config=None, multi_account=False):
"""Create a new task"""
payload = {
"serials": serials,
"script_name": script_name,
"script_config": script_config or {},
"enable_multi_account": multi_account
}
response = requests.post(
f"{BASE_URL}/task",
headers={"Content-Type": "application/json"},
json=payload
)
return response.json()
def list_tasks(status=None, page=1, page_size=20):
"""List tasks with optional filters"""
params = {"page": page, "page_size": page_size}
if status is not None:
params["status"] = status
response = requests.get(f"{BASE_URL}/task", params=params)
return response.json()
def get_task(task_id):
"""Get task details"""
response = requests.get(f"{BASE_URL}/task/{task_id}")
return response.json()
def delete_task(task_id):
"""Delete a task"""
response = requests.delete(f"{BASE_URL}/task/{task_id}")
return response.json()
def stop_task(task_id):
"""Stop a running task"""
response = requests.post(f"{BASE_URL}/task/{task_id}/stop")
return response.json()
def retry_task(task_id):
"""Retry a failed task"""
response = requests.post(f"{BASE_URL}/task/{task_id}/retry")
return response.json()
def get_stats():
"""Get task statistics"""
response = requests.get(f"{BASE_URL}/task/stats")
return response.json()
# उपयोग उदाहरण
if __name__ == "__main__":
# पहले लाइसेंस की जांच करें
license_info = check_license()
if license_info["code"] != 0:
print("API पहुंच उपलब्ध नहीं है:", license_info["message"])
exit(1)
print("लाइसेंस सामान्य:", license_info["data"]["plan_name"])
# एक फ़ॉलो कार्य बनाएं
result = create_task(
serials=["device_serial_1"],
script_name="follow",
script_config={"target_user": "@tikmatrix"}
)
print("कार्य बनाया गया:", result)
# सांख्यिकी प्राप्त करें
stats = get_stats()
print("सांख्यिकी:", stats["data"])
JavaScript / Node.js
const BASE_URL = 'http://localhost:50809/api/v1';
async function checkLicense() {
const response = await fetch(`${BASE_URL}/license/check`);
return response.json();
}
async function createTask(serials, scriptName, scriptConfig = {}, multiAccount = false) {
const response = await fetch(`${BASE_URL}/task`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
serials,
script_name: scriptName,
script_config: scriptConfig,
enable_multi_account: multiAccount
})
});
return response.json();
}
async function listTasks(status = null, page = 1, pageSize = 20) {
const params = new URLSearchParams({ page, page_size: pageSize });
if (status !== null) params.append('status', status);
const response = await fetch(`${BASE_URL}/task?${params}`);
return response.json();
}
async function getTask(taskId) {
const response = await fetch(`${BASE_URL}/task/${taskId}`);
return response.json();
}
async function deleteTask(taskId) {
const response = await fetch(`${BASE_URL}/task/${taskId}`, { method: 'DELETE' });
return response.json();
}
async function stopTask(taskId) {
const response = await fetch(`${BASE_URL}/task/${taskId}/stop`, { method: 'POST' });
return response.json();
}
async function retryTask(taskId) {
const response = await fetch(`${BASE_URL}/task/${taskId}/retry`, { method: 'POST' });
return response.json();
}
async function getStats() {
const response = await fetch(`${BASE_URL}/task/stats`);
return response.json();
}
// उपयोग उदाहरण
async function main() {
// लाइसेंस की जांच करें
const license = await checkLicense();
if (license.code !== 0) {
console.error('API पहुंच उपलब्ध नहीं है:', license.message);
return;
}
console.log('लाइसेंस सामान्य:', license.data.plan_name);
// कार्य बनाएं
const result = await createTask(
['device_serial_1'],
'follow',
{ target_user: '@tikmatrix' }
);
console.log('कार्य बनाया गया:', result);
// सांख्यिकी प्राप्त करें
const stats = await getStats();
console.log('सांख्यिकी:', stats.data);
}
main().catch(console.error);