10分钟跑通第一条自动消息,让你的系统拥有微信能力
注册账号后,在控制台获取您的专属 API 地址和 X-finder-TOKEN 密钥
约 30 秒# 在控制台「我的 API → 开通信息」中获取 API_BASE_URL = "https://wx.chuapi.com" AUTHORIZATION = "eyJ0eXAiOiJKV1..." # 您的永久有效密钥
在控制台完成微信扫码登录,系统自动生成实例标识,无需 Root、无需额外设备
约 2 分钟使用以下代码发送到文件传输助手,验证接入是否成功
约 5 分钟import requests # API 配置 API_URL = "https://wx.chuapi.com/sendText" HEADERS = { "X-finder-TOKEN": "eyJ0eXAiOiJKV1...", "Content-Type": "application/json" } # 发送文本消息 data = { "appId": "your-app-id", "toWxId": "filehelper", # 文件传输助手 "content": "Hello from WTAPI! 🎉" } response = requests.post(API_URL, json=data, headers=HEADERS) print(response.json())
curl -X POST "https://wx.chuapi.com/sendText" \ -H "X-finder-TOKEN: eyJ0eXAiOiJKV1..." \ -H "Content-Type: application/json" \ -d '{ "appId": "your-app-id", "toWxId": "filehelper", "content": "Hello from WTAPI! 🎉" }'
基于 WTAPI 的强大能力,构建丰富的微信自动化应用
注册后即可获取 API 凭证,5 分钟完成接入,立即开始构建你的微信自动化应用