From 26eec2c52a2f460be60089b1c93d4a6196cc8ffa Mon Sep 17 00:00:00 2001 From: Patrickcai Date: Tue, 18 Jun 2019 16:54:27 +0800 Subject: [PATCH] =?UTF-8?q?#1077=20=E4=BF=AE=E5=A4=8D=E5=BC=80=E5=8F=91?= =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E5=88=A0=E9=99=A4=E7=B1=BB=E7=9B=AE=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E4=B8=AD=E6=8B=BC=E5=86=99=E9=94=99=E8=AF=AF=E7=9A=84?= =?UTF-8?q?second=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=21528465979XX32V&token=&lang=zh_CN --- .../chanjar/weixin/open/api/impl/WxOpenFastMaServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl/WxOpenFastMaServiceImpl.java b/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl/WxOpenFastMaServiceImpl.java index 1314f37f..e72fb02b 100644 --- a/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl/WxOpenFastMaServiceImpl.java +++ b/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl/WxOpenFastMaServiceImpl.java @@ -208,7 +208,7 @@ public class WxOpenFastMaServiceImpl extends WxMaServiceImpl implements WxOpenFa public WxOpenResult deleteCategory (int first, int second) throws WxErrorException { JsonObject params = new JsonObject (); params.addProperty ("first", first); - params.addProperty ("Second", second); + params.addProperty ("second", second); String response = post (OPEN_DELETE_CATEGORY, GSON.toJson (params)); return WxOpenGsonBuilder.create ().fromJson (response, WxOpenResult.class); }