标签:file key message 获取 方法 enc lan sub invalid
https://blog.csdn.net/weixin_43357497/article/details/108620052
image
1.2 企业号中的部门id
对应上面获取的企业微信信息更改脚本中企业号中的部门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‘}
标签:file key message 获取 方法 enc lan sub invalid
原文地址:https://www.cnblogs.com/whcc/p/14584071.html