WeChatFerry/clients/gohttp/README.md

55 lines
2.4 KiB
Markdown
Vendored
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# WeChat Rest
基于 [WeChatFerry RPC](https://github.com/lich0821/WeChatFerry/tree/master/WeChatFerry) 实现,主要特性如下:
- 使用 Go 语言编写,无运行时依赖
- 提供 HTTP 接口,便于对接各类编程语言
- 提供 Websocket 接口,接收推送的新消息
- 支持 HTTP/WS 接口授权,参见 [配置说明](#配置说明)
- 支持作为 SDK 使用,参见 [wcferry/README.md](https://github.com/opentdp/wechat-rest/wcferry/README.md)
- 内置 AI 机器人,参见 [wclient/README.md](https://github.com/opentdp/wechat-rest/wclient/README.md)
- 内置 Web 管理界面,参见 `http://localhost:7600/`
- 内置 Api 调试工具,参见 `http://localhost:7600/swagger/`
- 尽可能将消息中的 Xml 转为 Object便于前端解析
> 为保证客户端纯粹性,此包仅提供 HTTP 和 Websocket 接口能力,完整功能可参考 [wechat-rest](https://github.com/opentdp/wechat-rest) 项目说明
## 快速开始
1、下载并安装 [WeChatSetup-3.9.2.23.exe](https://github.com/opentdp/wechat-rest/releases/download/v0.0.1/WeChatSetup-3.9.2.23.exe) 和 [wechat-rest.zip](https://github.com/opentdp/wechat-rest/releases)
- 非开发者请直接下载编译好的二进制文件,不要下载源码
2、双击 `wrest.exe` 将自动启动微信和接口服务,扫码登录微信
- 初始化时若出现 *Attempt to access invalid address* 信息可忽略
3、修改 [config.yml](./config.yml) 配置机器人参数,重启 **wrest.exe** 后生效
- 请使用 `Ctrl + C` 终止 **wrest.exe**,切勿直接关闭任务窗口
- 重启时,提示端口被占用,请退出微信后重试
## 配置说明
启动时将自动创建一个默认配置文件,完整配置可参考开源仓库中的 [config.yml](./config.yml)
- 如设置了 `token`,请求接口时需携带 **header** 信息: `Authorization: Bearer $token`
## 开发说明
- 查看和调试*HTTP*接口文档,请使用浏览器打开 `http://localhost:7600`
- 由于微信和*WCF*均为32位应用对接*bot*和*sdk*部分,必须设置环境变量 `GOARCH=386`
### API 模块
实现了 HTTP 接口,详情查看 [httpd/README.md](https://github.com/opentdp/wechat-rest/httpd/README.md)
### BOT 模块
实现了群聊机器人,详情查看 [wclient/README.md](https://github.com/opentdp/wechat-rest/wclient/README.md)
### SDK 模块
实现了 WCF 客户端,详情查看 [wcferry/README.md](https://github.com/opentdp/wechat-rest/wcferry/README.md)