zoukankan      html  css  js  c++  java
  • zabbix 发送邮件到企业微信



    #!/usr/bin/python2.7
    #_*_coding:utf-8 _*_
    #auther:拿来用用
    import requests,sys,json
    import urllib3
    urllib3.disable_warnings()




    def GetTokenFromServer(Corpid,Secret):
    Url = "https://qyapi.weixin.qq.com/cgi-bin/gettoken"
    Data = {
    "corpid":Corpid,
    "corpsecret":Secret
    }
    r = requests.get(url=Url,params=Data,verify=False)
    print(r.json())
    if r.json()['errcode'] != 0:
    return False
    else:
    Token = r.json()['access_token']
    file = open(r'zabbix_wechat_config.json', 'w')
    file.write(r.text)
    file.close()
    return Token

    def SendMessage(User,Agentid,Subject,Content):
    try:
    file = open(r'zabbix_wechat_config.json', 'r')
    Token = json.load(file)['access_token']
    file.close()
    except:
    Token = GetTokenFromServer(Corpid, Secret)

    n = 0
    Url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=%s" % Token
    Data = {
    "touser": User, # 企业号中的用户帐号,在zabbix用户Media中配置,如果配置不正常,将按部门发送。
    #"totag": Tagid, # 企业号中的标签id,群发使用(推荐)
    #"toparty": Partyid, # 企业号中的部门id,群发时使用。
    "msgtype": "text", # 消息类型。
    "agentid": Agentid, # 企业号中的应用id。
    "text": {
    "content": Subject + ' ' + Content
    },
    "safe": "0"
    }
    r = requests.post(url=Url,data=json.dumps(Data),verify=False)
    while r.json()['errcode'] != 0 and n < 4:
    n+=1
    Token = GetTokenFromServer(Corpid, Secret)
    if Token:
    Url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=%s" % Token
    r = requests.post(url=Url,data=json.dumps(Data),verify=False)
    print("fgdfkjgndfkjbgndfk")

    #return r.json()


    if __name__ == '__main__':
    User = "six wood"
    Subject = "sys.argv[2] # zabbix传过来的第二个参数"
    Content = "sys.argv[3] # zabbix传过来的第三个参数"
    Corpid = "ww22352a6cfdfd3ecd55da" # CorpID是企业号的标识
    Secret = "DKQwfdfd5ZjLbvbT2eVA4K3_JB_d6WJ12t7RE5mehqERWsQ"
    #Tagid = "1" # 通讯录标签ID
    Agentid = "1000002" # 应用ID
    #Partyid = "1" # 部门ID

    Status = SendMessage(User,Agentid,Subject,Content)

    改行去放羊
  • 相关阅读:
    django restful framework 有哪些功能(10条)
    Restful 规范
    eclipse编辑环境下导入springmvc的源码
    java.lang.NoSuchMethodException: .<init>()
    spring项目出现无法加载主类
    元素 "context:component-scan" 的前缀 "context" 未绑定。
    BeanPostProcessor出现init方法无法被调用Invocation of init method failed
    spring学习笔记
    springmvc学习笔记
    打印圈1圈2
  • 原文地址:https://www.cnblogs.com/musen/p/12055417.html
Copyright © 2011-2022 走看看