资源简介

使用python内置的模块,直接使用,已经在python2.6,2.7版本下测试正常

资源截图

代码片段和文件信息

#!/usr/bin/python
#_*_coding:utf-8 _*_
import urlliburllib2
import json
import sys

def gettoken(corpidcorpsecret):
gettoken_url = ‘https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=‘ + corpid + ‘&corpsecret=‘ + corpsecret
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_tokenusersubjectcontent):
send_url = ‘https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=‘ + access_token
send_values = {
“touser“:user   #企业号中的用户帐号,在zabbix用户Media中配置,如果配置不正常,将按部门或者标签组发送。
“toparty“:““    #企业号中的部门id
“totag“:““  #企业号中

评论

共有 条评论