最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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)

相關(guān)文章

最新評(píng)論

勐海县| 墨玉县| 永泰县| 离岛区| 台江县| 汨罗市| 金坛市| 阿尔山市| 平陆县| 白朗县| 荔波县| 岳阳县| 孟连| 红河县| 红原县| 景德镇市| 蓬安县| 丰台区| 海南省| 灵台县| 海门市| 丰城市| 澄江县| 延寿县| 宁陵县| 宝兴县| 方正县| 平潭县| 伊川县| 怀化市| 湘潭县| 中山市| 盐池县| 佛教| 龙游县| 西充县| 张家界市| 姚安县| 奎屯市| 陇南市| 科技|