码迷,mamicode.com
首页 > 微信 > 详细

Keepalived-企业微信通知

时间:2021-03-29 12:05:25      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:file   key   message   获取   方法   enc   lan   sub   invalid   

Keepalived-企业微信通知

https://blog.csdn.net/weixin_43357497/article/details/108620052

1. 登录企业微信获取相关信息

1.1 创建第三方应用

https://work.weixin.qq.com/

技术图片

image
1.2 企业号中的部门id

技术图片

1.3 获取刚刚创建的企业应用ID技术图片

1.4 获取CorpID是企业号的标识技术图片

2.创建python脚本

对应上面获取的企业微信信息更改脚本中企业号中的部门id、#企业号中的应用id、 #CorpID是企业号的标识、#corpsecretSecret应用管理组凭证密钥

master和backup节点都操作。

#master和backup节点都操作。
[root@nginx_proxy_01 ]# vim /etc/keepalived/wechat.py 
#!/usr/bin/python
#_*_coding:utf-8 _*_


import urllib,urllib2
import json
import sys
import simplejson

reload(sys)
sys.setdefaultencoding(‘utf-8‘)


def gettoken(corpid,corpsecret):
    gettoken_url = ‘https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=‘ + corpid + ‘&corpsecret=‘ + corpsecret
#    print  gettoken_url
    try:
        token_file = urllib2.urlopen(gettoken_url)
    except urllib2.HTTPError as e:
        print e.code
        print e.read().decode("utf8")
        sys.exit()
    token_data = token_file.read().decode(‘utf-8‘)
    token_json = json.loads(token_data)
    token_json.keys()
    token = token_json[‘access_token‘]
    return token

def senddata(access_token,user,subject,content):

    send_url = ‘https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=‘ + access_token
    send_values = {
        "touser":‘wuhe‘,    #企业号中的用户帐号,在zabbix用户Media中配置,如果配置不正常,将按部门发送。
        "toparty":"1",    #企业号中的部门id。           ##填写
        "msgtype":"text", #消息类型。
        "agentid":"1000002",    #企业号中的应用id。             ##填写
        "text":{
            "content":subject + ‘\n‘ + content
           },
        "safe":"0"
        }
#    send_data = json.dumps(send_values, ensure_ascii=False)
    send_data = simplejson.dumps(send_values, ensure_ascii=False).encode(‘utf-8‘)
    print(send_data)
    send_request = urllib2.Request(send_url, send_data)
    response = json.loads(urllib2.urlopen(send_request).read())
    print str(response)


if __name__ == ‘__main__‘:
    user = str(sys.argv[1])     #zabbix传过来的第一个参数
    subject = str(sys.argv[2])  #zabbix传过来的第二个参数
    content = str(sys.argv[3])  #zabbix传过来的第三个参数
    corpid =  ‘ww411f6ca36d84be27‘      #CorpID是企业号的标识           ##填写
    corpsecret = ‘DYhx7s3eR7MmLcmYF4K8m04_iK-fHJP6EQmgq5sAfyE‘  #corpsecretSecret应用管理组凭证密钥             ##填写
    accesstoken = gettoken(corpid,corpsecret)
    senddata(accesstoken,user,subject,content)

赋予可执行权限

master和backup节点都操作
# chmod +x /etc/keepalived/wechat.py 

以上脚本必须安装simplejson才能执行

master和backup节点都操作。
方法一:
yum install python-simplejson -y
方法二:

wget https://pypi.python.org/packages/f0/07/26b519e6ebb03c2a74989f7571e6ae6b82e9d7d81b8de6fcdbfc643c7b58/simplejson-3.8.2.tar.gz
tar zxvf simplejson-3.8.2.tar.gz && cd simplejson-3.8.2
python setup.py build
python setup.py install

测试

[root@lb01 keepalived]# ./wecaht.py 1 2 3 
{"text": {"content": "2\n3"}, "safe": "0", "msgtype": "text", "touser": "yanmb", "agentid": "1000006", "toparty": "2"}
{u‘invalidparty‘: u‘2‘, u‘invaliduser‘: u‘‘, u‘errcode‘: 0, u‘errmsg‘: u‘ok‘}

Keepalived-企业微信通知

标签:file   key   message   获取   方法   enc   lan   sub   invalid   

原文地址:https://www.cnblogs.com/whcc/p/14584071.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!