问答详情
源自:3-2 自定义菜单(下)

老师,我的自定菜单创建失败,错误码 48001

老师,我的自定菜单创建失败,错误码 48001,说是api功能不支持,那要怎么才能支持呢?

提问者:儒家张良不是我 2015-06-09 17:59

个回答

  • 蓝with黑
    2016-06-21 14:57:10

    我也报48001的错误,不知道怎么回事,但是要本地启动下WxTest控制台才会打印出来。放到服务器上都没输出的,不知道是什么原因,放到服务器上WeiXinTest.java 会自己运行吗?

  • 儒家张良不是我
    2015-06-10 14:36:01

    我又遇到一个问题 ,那个定位 怎么有时候 那个map返回的值不一样。。。

    正常:{MsgId=6158640007720, FromUserName=ohrIWs3URqouoyqA7dY, CreateTime=1433915340, Label=东城区祈年大街, Scale=16, Location_X=39.895153, ToUserName=gh_001cb61311c8, Location_Y=116.412437, MsgType=location}

    不正常:

    {FromUserName=ohrIWs3URqouoyqA7dY, EventKey=click4, Event=location_select, CreateTime=1433918018, SendLocationInfo=, ToUserName=gh_001cb61311c8, MsgType=event}

    。。。。。。




  • 子非酸菜鱼
    2015-06-10 14:19:56

    失败了,你们给看看吧,我是在测试账号弄的,那个button(有子菜单的)组装有问题


  • 子非酸菜鱼
    2015-06-10 14:19:08

    public static Menu initMenu(){
    		
    		ClickButton button11 = new ClickButton();
    		button11.setName("click-menu");
    		button11.setType("click");
    		button11.setKey("11");
    		
    		ViewButton button21 = new ViewButton();
    		button21.setName("view-menu");
    		button21.setType("view");
    		button21.setUrl("http://www.imooc.com");
    		
    		ClickButton button31 = new ClickButton();
    		button31.setName("event");
    		button31.setType("scancode_push");
    		button31.setKey("31");
    		
    		ClickButton button32 = new ClickButton();
    		button32.setName("location");
    		button32.setType("location_select");
    		button32.setKey("32");
    		
    		Button button = new Button();
    		button.setName("first menu");
    		button.setSub_btn(new Button[]{button31,button32});
    		Menu menu = new Menu();
    		menu.setButton(new Button[]{button11,button21,button});
    		return menu;
    	}


  • Mefa
    2015-06-10 11:51:54

    楼上正解

  • 子非酸菜鱼
    2015-06-10 10:09:26

    本期课程2-4图片消息回复,5分15秒开始看

  • 儒家张良不是我
    2015-06-10 09:13:18

    额,我试试,谢谢老师