|
- <?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/weixin2/submit_login.php"
-
- },
- {
- "name":"奔驰专线",
- "type":"view",
- "url":"http://wx.zhizhuchuxing.com/ZZDZ2/dzbs_login.php"
-
- },
- {
- "name":"更多服务",
- "sub_button":[
- {
- "type":"view",
- "name":"我的订单",
- "url":"http://wx.zhizhuchuxing.com/ZZDZ2/dzbs_list.php"
- },
- {
- "type":"view",
- "name":"绑定订单",
- "url":"http://wx.zhizhuchuxing.com/weixin2/bind_order.html"
- },
- {
- "type":"view",
- "name":"我的行程",
- "url":"http://wx.zhizhuchuxing.com/weixin2/run_list_login.php"
- },
- {
- "type":"view",
- "name":"蜘蛛分销",
- "url":"http://sfx.zhizhuchuxing.com/wchat_fx/login.html"
- },
- {
- "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);
|