Linux shell之curl 链接飞书机器人

#!/bin/bash
content=$1
content=${content//\ /}
content=${content//\"/}
time3=$(date "+%H:%M:%S")
content="$time3,$content"
echo "warn content is : $content"

#飞书机器人webhook 地址
api=https://open.feishu.cn/open-apis/bot/v2/hook/58298exxxxxxxxxxxxxxxxxxxxxx


curl -X POST \
  $api \
  -H 'Content-Type: application/json' \
    -d '{
    "msg_type": "post",
    "content": {
        "post": {
            "zh_cn": {
                "title": "WGCLOUD告警",
                "content": [
                    [
                        {
                            "tag": "text",
                            "text": "'$content'"
                        }
                    ],
                    [

                    ]
                ]
            }
        }
    }
}'

保存后加权限 chmod +x

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容