這篇文章主要介紹了Python程式實作微信企業號文字訊息推播功能,結合實例形式分析了Python微信企業號文字訊息推播介面的呼叫相關操作技巧,需要的朋友可以參考下
本文實例講述了Python微信企業號文字訊息推播功能。分享給大家供大家參考,具體如下:
企業號的創建、企業號應用的創建、群組、tag、part就不贅述了,一搜一大堆,但是網上拿的那些個腳本好多都不好使,所以自己修了一個
坦率的講,這個腳本是用來作為zabbix的通知媒介腳本的,本人是個菜鳥,如果哪裡不對,大神們不要笑話,python也處於學習階段,如果有哪些地方不合理,很希望可以不吝賜教,廢話不多說,腳本奉上:
#!/usr/bin/python # _*_coding:utf-8 _*_ import urllib2 import json import sys reload(sys) sys.setdefaultencoding('utf-8') def gettoken(corpid, corpsecret): 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_token, user, party, agent, subject, content): send_url = 'https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=' + access_token send_values = "{\"touser\":\"" + user + "\",\"toparty\":\"" + party + "\",\"totag\":\"\",\"msgtype\":\"text\",\"agentid\":\"" + agent + "\",\"text\":{\"content\":\"" + subject + "\n" + content + "\"},\"safe\":\"0\"}" send_request = urllib2.Request(send_url, send_values) response = json.loads(urllib2.urlopen(send_request).read()) print str(response) if __name__ == '__main__': user = str(sys.argv[1]) # 参数1:发送给用户的账号,必须关注企业号,并对企业号有发消息权限 party = str(sys.argv[2]) # 参数2:发送给组的id号,必须对企业号有权限 agent = str(sys.argv[3]) # 参数3:企业号中的应用id subject = str(sys.argv[4]) # 参数4:标题【消息内容的一部分】 content = str(sys.argv[5]) # 参数5:文本具体内容 corpid = 'CorpID' # CorpID是企业号的标识 corpsecret = 'corpsecretSecret' # corpsecretSecret是管理组凭证密钥 try: accesstoken = gettoken(corpid, corpsecret) senddata(accesstoken, user, party, agent, subject, content) except Exception, e: print str(e) + "Error Please Check \"corpid\" or \"corpsecret\" Config"
以上是Python如何實作微信企業號文字訊息推播功能的範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!