Python编程实现微信企业号文本消息推送功能示例
本文实例讲述了Python微信企业号文本消息推送功能。分享给大家供大家参考,具体如下:
企业号的创建、企业号应用的创建、组、tag、part就不赘述了,一搜一大堆,但是网上拿的那些个脚本好多都不好使,所以自己修了一个
坦率的讲,这个脚本是用来作为zabbix的通知媒介脚本的,本人是个菜鸟,如果哪里不对,大神们不要笑话,python也处于学习阶段,如果有哪些地方不合理,很希望可以不吝赐教,废话不多说,脚本奉上:
#!/usr/bin/python #_*_coding:utf-8_*_ importurllib2 importjson importsys reload(sys) sys.setdefaultencoding('utf-8') defgettoken(corpid,corpsecret): gettoken_url='https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid='+corpid+'&corpsecret='+corpsecret try: token_file=urllib2.urlopen(gettoken_url) excepturllib2.HTTPErrorase: printe.code printe.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'] returntoken defsenddata(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()) printstr(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) exceptException,e: printstr(e)+"ErrorPleaseCheck\"corpid\"or\"corpsecret\"Config"
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python字符串操作技巧汇总》、《Python编码操作技巧总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》及《Python入门与进阶经典教程》。
希望本文所述对大家Python程序设计有所帮助。