這篇文章將為大家詳細講解有關(guān)python微信小程序中如何獲取已存在模板消息列表,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)建站專注服務(wù)器托管服務(wù)十余年,提供服務(wù)器租用、雅安服務(wù)器托管、空間域名、云服務(wù)器、云主機租用、綿陽電信機房機柜租用、建站等服務(wù)獲取小程序?qū)?yīng)的access token
def get_wx_token(): url = "https://api.weixin.qq.com/cgi-bin/token?" try: respone = requests.get(url, params=payload, timeout=50) access_token = respone.json().get("access_token") res = respone.json() res["time"] = stamp print(u'token過期,重新寫入文件的內(nèi)容>>>', res) with open(token_file, "w+") as f: f.write(json.dumps(res)) return access_token except Exception as e: msg = traceback.format_exc() print('get token error', msg) return
并判斷是否過期
def get_access_token(): try: with open(token_file, "r") as f: content = f.read() data_dict = content # 如果緩存內(nèi)容為空,直接重新獲取token if (content == ''): print("token文件為空,重新獲取并寫入文件") result = get_wx_token() return result else: data_dict = re.sub('\'', '\"', data_dict) token_time = int(json.loads(data_dict)['time']) if (stamp - token_time) > 7100: # print("token過期,重新獲取并寫入文件") get_wx_token() else: return json.loads(data_dict)['access_token'] except Exception as e: msg = traceback.format_exc() print("access token express time", msg)
根據(jù)access token 獲取模板列表
def get_templates_list(access_token): url = "https://api.weixin.qq.com/cgi-bin/wxopen/template/list?access_token={}".format(access_token) data = { "offset": 0, "count": 20 } r = requests.post(url,data=json.dumps(data)).json() tpl_list = r.get('list') for tpl in tpl_list: print(tpl) # print(r.get('list'))
返回數(shù)據(jù)示例
{ "errcode": 0, "errmsg": "ok", "list": [ { "template_id": "wDYzYZVxobJivW9oMpSCpuvACOfJXQIoKUm0PY397Tc", "title": "購買成功通知", "content": "購買地點{{keyword1.DATA}}\n購買時間{{keyword2.DATA}}\n物品名稱{{keyword3.DATA}}\n", "example": "購買地點:TIT造艦廠\n購買時間:2016年6月6日\n物品名稱:咖啡\n" } ] }Python的優(yōu)點有哪些
1、簡單易用,與C/C++、Java、C# 等傳統(tǒng)語言相比,Python對代碼格式的要求沒有那么嚴(yán)格;2、Python屬于開源的,所有人都可以看到源代碼,并且可以被移植在許多平臺上使用;3、Python面向?qū)ο?,能夠支持面向過程編程,也支持面向?qū)ο缶幊蹋?、Python是一種解釋性語言,Python寫的程序不需要編譯成二進制代碼,可以直接從源代碼運行程序;5、Python功能強大,擁有的模塊眾多,基本能夠?qū)崿F(xiàn)所有的常見功能。
關(guān)于“python微信小程序中如何獲取已存在模板消息列表”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。