为了账号安全,请及时绑定邮箱和手机立即绑定

微信菜单的实现

微信菜单的实现

PHP
phppre 2016-11-03 12:45:00
function definedItem(){ header("Content-type:text/html;charset=utf-8"); $appid="wx05d9393305accd18"; $appsecret="574949930358aeec6ead7e58abfb1522"; $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$appid."&secret=".$appsecret; $res=$this->http_curl($url,'get','json'); echo $access_token=$res['access_token']; $url = 'https://api.weixin.qq.com/cgi-bin/menu/create?access_token='.$access_token; $postArr=array( 'button'=>array( array( 'name'=>urlencode('菜单一'), 'type'=>'click', 'key'=>'item1', ), array( 'name'=>urlencode('菜单二'), 'type'=>'click', 'key'=>'item1', ), array( 'name'=>urlencode('菜单二'), 'type'=>'click', 'key'=>'item1', ),  ), ); echo '<hr />'; var_dump($postArr); echo '<hr />'; echo $postJson=urldecode(json_encode($postArr)); $res = $this->http_curl($url,'post','json',$postJson); var_dump($res); }这段代码这么让他调用啊
查看完整描述

1 回答

已采纳
?
慕田峪3555374

TA贡献137条经验 获得超18个赞

直接调用这个方法就可以了啊,只要调一次就可以生成菜单了,以后除非有更改了再调重新生成新的菜单

查看完整回答
反对 回复 2016-11-05
  • 1 回答
  • 0 关注
  • 1258 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信