App下載

Python怎么實(shí)現(xiàn)微信推送模板消息功能

猿友 2021-07-23 10:36:11 瀏覽數(shù) (2409)
反饋

使用過微信公眾號的小伙伴應(yīng)該知道微信公眾號有時(shí)候會給你推一些文章。當(dāng)你選擇它的某個(gè)功能時(shí),它還會返回一些信息。而這些信息都是有固定格式的,我們通常叫他模板,今天我們就來聊一聊python實(shí)現(xiàn)微信推送模板信息。話不多說,直接上代碼。

本文實(shí)例講述了Python微信推送模板消息功能。分享給大家供大家參考,具體如下:

具體代碼如下:

#!/usr/bin/env python

#-*- coding: utf-8 -*-

import httplib

import json

import MySQLdb

#從數(shù)據(jù)庫中獲取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])

#根據(jù)接口推送消息

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',#跳轉(zhuǎn)鏈接

"topcolor" : "#667F00",#顏色

"data" : {#模板內(nèi)容

"first" : {"value" : "尊敬的710.so : 您的網(wǎng)站https://www.jb51.net (192.168.1.1) 有異常訪問", "color" : "#173177"},

"keyword1" : {"value" : "訪問時(shí)間 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()#推送返回?cái)?shù)據(jù)

if response.status == 200:

print 'success'

print data

else:

print 'fail'

conn.close()

以上就是Python實(shí)現(xiàn)微信推送模板信息的全部內(nèi)容,更多Python優(yōu)質(zhì)好文請關(guān)注W3Cschool其它相關(guān)文章!


0 人點(diǎn)贊