|
- <?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":"专题旅游",
- "sub_button":[
- {
- "type":"view",
- "name":"土楼专区",
- "url":"http://m.xmwtt.com/tour_list.php?catid=1&type=tl"
- },
- {
- "type":"view",
- "name":"周边游专区",
- "url":"http://m.xmwtt.com/tour_list.php?catid=1"
- },
- {
- "type":"view",
- "name":"住宿专区",
- "url":"http://m.xmwtt.com/hotels.php"
- },
- {
- "type":"view",
- "name":"特价门票",
- "url":"http://m.xmwtt.com/ticket.php"
- },
- {
- "type":"view",
- "name":"自由行",
- "url":"http://m.xmwtt.com/detail.php?id=10213"
- }]
-
-
- },
- {
- "name":"周边游",
- "sub_button":[
- {
- "type":"view",
- "name":"跟团旅游",
- "url":"http://m.xmwtt.com/tour_list.php?catid=1"
- },
- {
- "type":"view",
- "name":"租车包车",
- "url":"http://m.xmwtt.com/detail.php?id=10226"
- }]
- },
- {
- "name":"联系我们",
- "sub_button":[
- {
- "type":"click",
- "name":"旗舰店",
- "key":"XMWX_QIJIANDIAN"
- },
- {
- "type":"view",
- "name":"关于我们",
- "url":"http://m.xmwtt.com/about.php"
- },
- {
- "type":"view",
- "name":"限时优惠",
- "url":"http://m.xmwtt.com/detail.php?id=10226"
- },
- {
- "type":"click",
- "name":"投诉建议",
- "key":"XMWX_TOUSUJIANYI"
- },
- {
- "type":"view",
- "name":"荣升出境社",
- "url":"http://eqxiu.com/s/zHOGxEWg"
- }]
-
-
- }]
- }';
-
- /*
- ",
- {
- \"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);
|