Python實(shí)現(xiàn)微信公眾平臺(tái)自定義菜單實(shí)例
更新時(shí)間:2015年03月20日 11:09:49 投稿:junjie
這篇文章主要介紹了Python實(shí)現(xiàn)微信公眾平臺(tái)自定義菜單實(shí)例,本文直接給出實(shí)現(xiàn)代碼,需要的朋友可以參考下
首先先獲取access_token,并保存與全局之中
def token(requset): url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=%s&secret=%s' % ( Config.AppID, Config.AppSecret) result = urllib2.urlopen(url).read() Config.access_token = json.loads(result).get('access_token') print 'access_token===%s' % Config.access_token return HttpResponse(result)
利用上面獲得的access_token,創(chuàng)建自定義表單
def createMenu(request): url = "https://api.weixin.qq.com/cgi-bin/menu/create?access_token=%s" % Config.access_token data = { "button":[ { "name":"看美圖", "sub_button":[ { "type":"click", "name":"美圖", "key":"meitu" }, { "type":"view", "name":"精選", "url":"http://m.jb51.net/photos" }, { "type":"view", "name":"回顧", "url":"http://m.qzone.com/infocenter?g_f=#2378686916/mine" }, { "type":"view", "name":"美圖app", "url":"http://jb51.net/app/app.html" }] }, { "name":"看案例", "sub_button":[ { "type":"click", "name":"全部風(fēng)格", "key":"style" }, { "type":"click", "name":"全部戶型", "key":"houseType" }, { "type":"click", "name":"全部面積", "key":"area" }, { "type":"view", "name":"更多案例", "url":"http://m.jb51.net/projects" }] }, { "type":"view", "name":"設(shè)計(jì)申請(qǐng)", "url":"http://jb51.net/zhuanti/freedesign.jsp?src=3" } ] } #data = json.loads(data) #data = urllib.urlencode(data) req = urllib2.Request(url) req.add_header('Content-Type', 'application/json') req.add_header('encoding', 'utf-8') response = urllib2.urlopen(req, json.dumps(data,ensure_ascii=False)) result = response.read() return HttpResponse(result)
您可能感興趣的文章:
- python之wxPython菜單使用詳解
- 使用python實(shí)現(xiàn)省市三級(jí)菜單效果
- Python字典實(shí)現(xiàn)簡(jiǎn)單的三級(jí)菜單(實(shí)例講解)
- Python三級(jí)菜單的實(shí)例
- python遞歸查詢菜單并轉(zhuǎn)換成json實(shí)例
- python實(shí)現(xiàn)應(yīng)用程序在右鍵菜單中添加打開(kāi)方式功能
- Python自動(dòng)化開(kāi)發(fā)學(xué)習(xí)之三級(jí)菜單制作
- Python模擬三級(jí)菜單效果
- Python基于win32ui模塊創(chuàng)建彈出式菜單示例
- Python創(chuàng)建普通菜單示例【基于win32ui模塊】
- Python處理菜單消息操作示例【基于win32ui模塊】
相關(guān)文章
python日期時(shí)間轉(zhuǎn)為字符串或者格式化輸出的實(shí)例
今天小編就為大家分享一篇python日期時(shí)間轉(zhuǎn)為字符串或者格式化輸出的實(shí)例,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2018-05-05Matplotlib animation模塊實(shí)現(xiàn)動(dòng)態(tài)圖
這篇文章主要介紹了Matplotlib animation模塊實(shí)現(xiàn)動(dòng)態(tài)圖,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2021-02-02Django模板之基本的 for 循環(huán) 和 List內(nèi)容的顯示方式
這篇文章主要介紹了Django模板之基本的 for 循環(huán) 和 List內(nèi)容的顯示方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2020-03-03