您好,登錄后才能下訂單哦!
這篇文章主要介紹了Python如何實現微信推送模板消息功能的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Python如何實現微信推送模板消息功能文章都會有所收獲,下面我們一起來看看吧。
具體代碼如下:
#!/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如何實現微信推送模板消息功能”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Python如何實現微信推送模板消息功能”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。