美文网首页
飞书机器人发送消息py脚本

飞书机器人发送消息py脚本

作者: 醉眼看人间_个个都温柔 | 来源:发表于2020-11-28 14:37 被阅读0次
[root@Zabbix-server alertscripts]# cat feishu.py 
#!/usr/bin/python
# -*- coding: utf-8 -*-
import requests
import json
import sys
import os

headers = {'Content-Type': 'application/json;charset=utf-8'}
api_url = "https://open.feishu.cn/open-apis/bot/v2/hook/fc213828-a46b-4d95-b15e-5xxxx" #飞书机器人Webhook地址

def msg(text):
    json_text= {
     "msg_type": "text",
        "content": {
            "text": text
        },
    }
    print requests.post(api_url,json.dumps(json_text),headers=headers).content

if __name__ == '__main__':
    text = sys.argv[1]
    msg(text)
[root@Zabbix-server alertscripts]# 

相关文章

网友评论

      本文标题:飞书机器人发送消息py脚本

      本文链接:https://www.haomeiwen.com/subject/hsnqwktx.html