您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

Python实现微信公众平台自定义菜单实例

5b51 2022/1/14 8:19:45 python 字数 3371 阅读 419 来源 www.jb51.cc/python

首先先获取access_token,并保存与全局之中 deftoken(requset): url=\'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=%s&secret=%s\'%(

概述

首先先获取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,创建自定义表单

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"
      },"name":"回顾","url":"http://m.qzone.com/infocenter?g_f=#2378686916/mine"
      },"name":"美图app","url":"http://jb51.net/app/app.html"
      }]
 },{
      "name":"看案例","name":"全部风格","key":"style"
      },{
        "type":"click","name":"全部户型","key":"houseType"
      },"name":"全部面积","key":"area"
      },"name":"更多案例","url":"http://m.jb51.net/projects"
      }]
 },{
      "type":"view","name":"设计申请","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实现微信公众平台自定义菜单实例全部内容,希望文章能够帮你解决Python实现微信公众平台自定义菜单实例所遇到的程序开发问题。


如果您也喜欢它,动动您的小指点个赞吧

除非注明,文章均由 laddyq.com 整理发布,欢迎转载。

转载请注明:
链接:http://laddyq.com
来源:laddyq.com
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。


联系我
置顶