shell脚本触发企业微信群机器人

shell脚本触发企业微信群机器人

1、创建企业微信

2、企业微信添加机器人

shell脚本触发企业微信群机器人_第1张图片

3、复制hook地址

https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=08149ccf-3668-4fb9-bb06-asdfasdfasd

4、编辑shell脚本

#!/bin/bash

WEBHOOK_URL="https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=08149ccf-3668-4fb9-bb06-asdfasdfasd"

curl --location --request POST ${WEBHOOK_URL} \
--header 'Content-Type: application/json' \
-d '{"msgtype": "text","text": {"content": "Hi,hao添加到群"}}'

你可能感兴趣的:(shell脚本触发企业微信群机器人)