首先先獲取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è)計申請", "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)
更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號聯(lián)系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
