Python编程之微信推送模板消息功能示例
作者:710so 时间:2022-11-15 03:45:04
本文实例讲述了Python微信推送模板消息功能。分享给大家供大家参考,具体如下:
官方文档:https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1445241432
具体代码如下:
#!/usr/bin/env python
#-*- coding: utf-8 -*-
import httplib
import json
import MySQLdb
#从数据库中获取access_token
access_token=""
try:
conn=MySQLdb.connect(host='192.168.1.1',user='root',passwd='root',db='db_weixin',port=3306)
cur=conn.cursor()
cur.execute('select access_token from weixin_public')
result=cur.fetchone()
#print result
#print result[0]
access_token=result[0]
cur.close()
conn.close()
except MySQLdb.Error,e:
print "Mysql Error %d: %s" % (e.args[0], e.args[1])
#根据接口推送消息
if not access_token is None:
conn = httplib.HTTPConnection("api.weixin.qq.com:80")#微信接口链接
headers = {"Content-type":"application/json"} #application/x-www-form-urlencoded
params = ({'touser' : "oEGZ4johnKOtayJbnEVeuaZr6zQ0",#用户openid
'template_id' : 'AtFuydv8k_15UGZuFntaBzJRCsHCkjNm1dcWD3A-11Y',#模板消息ID
'url' : 'https://www.jb51.net',#跳转链接
"topcolor" : "#667F00",#颜色
"data" : {#模板内容
"first" : {"value" : "尊敬的710.so : 您的网站https://www.jb51.net (192.168.1.1) 有异常访问", "color" : "#173177"},
"keyword1" : {"value" : "访问时间 2015-04-05 15:30:59 访问IP 192.168.1.2", "color" : "#173177"},
"keyword2" : {"value" : "访问链接 https://www.jb51.net", "color" : "#173177"},
"remark" : {"value" : "访问频率 10/s", "color" : "#173177"}
}
}
)
conn.request("POST", "/cgi-bin/message/template/send?access_token="+access_token, json.JSONEncoder().encode(params), headers)#推送消息请求
response = conn.getresponse()
data = response.read()#推送返回数据
if response.status == 200:
print 'success'
print data
else:
print 'fail'
conn.close()
希望本文所述对大家Python程序设计有所帮助。
来源:http://www.cnblogs.com/710so/p/weixin_push.html
标签:Python,微信,推送
0
投稿
猜你喜欢
MySQL优化之数据类型的使用
2009-03-16 17:12:00
简单的分页代码js实现
2024-04-25 13:10:29
Python通过调用有道翻译api实现翻译功能示例
2023-12-11 09:44:04
python实现简单tftp(基于udp协议)
2021-01-30 15:01:23
Python 寻找局部最高点的实现
2021-05-10 14:44:00
Sublime Text3最新激活注册码分享适用2020最新版 亲测可用
2023-02-03 07:18:38
详解Python各大聊天系统的屏蔽脏话功能原理
2021-02-23 13:53:44
python实现批量图片格式转换
2021-07-15 16:07:42
python列表生成器常用迭代器示例详解
2023-11-16 01:35:12
基于vue的验证码组件的示例代码
2024-06-05 15:29:22
基于Git的常用撤销技巧与解决冲突方法(推荐)
2023-07-01 19:20:28
JavaScript使用math.js进行精确计算操作示例
2024-04-10 10:54:41
Go语言压缩和解压缩tar.gz文件的方法
2024-05-21 10:21:46
Python 中的 else详解
2021-12-15 09:42:18
js读写COOKIE实现记住帐号或密码的代码(js读写COOKIE)
2024-04-18 10:11:12
很有意思的SQL多行数据拼接
2011-11-03 17:08:29
介绍Python的Django框架中的静态资源管理器django-pipeline
2023-11-12 00:10:35
python写文件时覆盖原来的实例方法
2021-06-01 05:21:51
浅谈Python NLP入门教程
2021-04-18 14:45:53
Python变量和字符串详解
2023-08-23 02:59:49