Home

Awesome

wepush

利用企业微信应用消息向微信发送通知,server酱的golang版本实现。(server酱每次有5条消息的限制)

1. 部署

部署之前需要先创建企业微信和企业微信应用详细过程可以参考server酱教程

git clone https://github.com/saucer-man/wepush
cd wepush
vim wepush.env  # 填写企业微信应用信息
docker-compose build && docker-compose up -d

其中主要需要填写的有:

默认端口为8001,日志目录为./log,可以从docker-compose.yml中修改

2. 使用

部署完毕后,直接请求接口即可发送消息。

curl http://localhost:8001/wepush -H "Content-Type:application/json" -H "token:123" -X POST -d '{"type": "text","touser": "@all","msg": "hello\nworld"}'

其中参数:

效果: