|
- <?php
- //不加参数
- require_once '../Common/Config.php';
- require_once '../Common/Function.php';
- $access_token=getAccesstoken();
-
- $url = "https://api.weixin.qq.com/cgi-bin/menu/create?access_token=".$access_token;
- $jsonmenu = '{
- "button":[
- {
- "name":"出行预订",
- "type":"view",
- "url":"http://wx.zhizhuchuxing.com/index.html"
-
- },
- {
- "name":"我的订单",
- "type":"view",
- "url":"http://wx.zhizhuchuxing.com/core/my_order.asp"
-
- },
- {
- "name":"更多服务",
- "sub_button":[
-
- {
- "type":"view",
- "name":"车辆定位",
- "url":"http://wx.zhizhuchuxing.com/wechat/jssdk/location.php"
- },
- {
- "type":"view",
- "name":"品牌介绍",
- "url":"http://mp.weixin.qq.com/s?__biz=MzIwNjI0MDAwOQ==&mid=502857840&idx=1&sn=3588fceca936c75cf5bede34b5dafe76#rd"
- },
- {
- "type":"view",
- "name":"帮助中心",
- "url":"http://mp.weixin.qq.com/s?__biz=MzIwNjI0MDAwOQ==&mid=502857753&idx=1&sn=a9039c8508a05f08f41027307296995f&scene=18#wechat_redirect"
- }]
-
-
- }]
- }';
-
- $result = http_request($url, $jsonmenu);
- var_dump($result);
|