参考QQ机器人 OneBot 实现标准,为wechat机器人 padloacl 提供通过 HTTP 或 WebSocket 接收事件和调用 API 的能力
- 安装模块
npm install padlocl-http
- 开箱即用
import PadLocalHTTP from "padlocal-http"
const padLocalOptions = {
"token": "你的token",//token需要申请
};
const serverOptions = {
"port": "5030", // http服务请求端口
"postUrl": "http://127.0.0.1:5031" // 事件回调端口
}
PadLocalHTTP.install(padLocalOptions, serverOptions);
Padlocal is in beta testing stage, granting tokens to limited partners. If you want to apply, please contact admin for further information.
- 请求参数校验
- 增加websocket协议
- 多账号管理