> 点这里 [GitHub的地址](https://github.com/SugarAYuan/WeChatAlarm)
> 将来我打算把日志系统也融入其中,还有定时脚本之类的,到时候再做个页面勾勾选选就解决配置问题。
> 有写的不好的地方请大家多多指正哈:)谢谢~~
- 首先更改配置文件(config.toml)中的APPID和SECRET然后运行脚本
```shell
./alarm
服务器已启动监听端口为:9200
```
- 第二步 注意config中的模板ID配置完后要将相应的模板配置写入到template.json中
```json
//添加模板ID的json配置在template.json中
//例如
{
"对应模板id": {
"first": {
"value": "",
"color": "#173177"
},
"remark": {
"value": "点击查看详情!",
"color": "#173177"
}
}
}
```
- 第三步 发送post请求
```shell
#多个user使用,号分隔
curl -d'{"user":"xiaowang,xiaozhang","message":{"first":"aaaaa","remark":"remark"},"template_key":"test","url":"www.baidu.com"}' 127.0.0.1:9200
#这时候刚才启动的服务器就会发出请求
POST请求:创建成功 {"access_token":"token","expires_in":7200}
当前Token为: token
过期时间还有:7200秒
POST请求:创建成功 {"errcode":0,"errmsg":"ok","msgid":22212}
```
有疑问加站长微信联系(非本文作者))