We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46f5916 commit 26eec2cCopy full SHA for 26eec2c
weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl/WxOpenFastMaServiceImpl.java
@@ -208,7 +208,7 @@ public WxOpenResult addCategory (List<WxFastMaCategory> categoryList) throws WxE
208
public WxOpenResult deleteCategory (int first, int second) throws WxErrorException {
209
JsonObject params = new JsonObject ();
210
params.addProperty ("first", first);
211
- params.addProperty ("Second", second);
+ params.addProperty ("second", second);
212
String response = post (OPEN_DELETE_CATEGORY, GSON.toJson (params));
213
return WxOpenGsonBuilder.create ().fromJson (response, WxOpenResult.class);
214
}
0 commit comments