Featured image of post 使用企业微信做一个消息推送服务机器人

使用企业微信做一个消息推送服务机器人

搭建一个没有次数发送限制的消息推送服务

Start

之前在CODING配置了所有项目部署成功后进行消息推送, 随着项目多了,再加上其他服务也有消息提醒, Server酱提供的服务就不够用了

找了一下常用的两个个服务, 但是次数都有限制, 不够用

配置

// Server酱
 sshCommand(
  remote: remoteConfig,
  command: "curl -X POST -d \"title=`echo \$(curl -I 127.0.0.1:8199/ping)`&desp=消息详情\" https://sctapi.ftqq.com/xxxx.send",
  sudo: true,
)
              
// 更换后, 按实际更换成自己所需
sshCommand(
  remote: remoteConfig,
  command: "curl -X POST -d \"sendkey=xxxxxxx&msg_type=text&msg=${DOCKER_REPO_NAME}%0D%0A${SERVICE_URL}%0D%0A%0D%0A`echo \$(curl -I 127.0.0.1:8199/ping)`\" http://127.0.0.1:8080/wecomchan",
  sudo: true,
)

效果图