From f5bb2ba2d024bd3b6d3f6ad8c8ab8c4d748f047c Mon Sep 17 00:00:00 2001 From: Binary Wang Date: Mon, 15 Jul 2024 17:03:14 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20=E3=80=90=E5=B0=8F=E7=A8=8B=E5=BA=8F?= =?UTF-8?q?=E3=80=91=E4=BF=AE=E5=A4=8D=E8=8E=B7=E5=8F=96=E8=BF=90=E5=8A=9B?= =?UTF-8?q?id=E5=88=97=E8=A1=A8=E6=8E=A5=E5=8F=A3=E4=BC=A0=E5=8F=82?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../wx/miniapp/api/impl/WxMaImmediateDeliveryServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/api/impl/WxMaImmediateDeliveryServiceImpl.java b/weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/api/impl/WxMaImmediateDeliveryServiceImpl.java index fa1927ffd..05e8f2e0a 100644 --- a/weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/api/impl/WxMaImmediateDeliveryServiceImpl.java +++ b/weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/api/impl/WxMaImmediateDeliveryServiceImpl.java @@ -197,7 +197,7 @@ public class WxMaImmediateDeliveryServiceImpl implements WxMaImmediateDeliverySe @Override public GetDeliveryListResponse getDeliveryList() throws WxErrorException { - String responseContent = this.wxMaService.post(InstantDelivery.GET_DELIVERY_LIST_URL,""); + String responseContent = this.wxMaService.post(InstantDelivery.GET_DELIVERY_LIST_URL,"{}"); GetDeliveryListResponse response = GetDeliveryListResponse.fromJson(responseContent); if (response.getErrcode() == -1) { throw new WxErrorException(WxError.fromJson(responseContent, WxType.MiniApp));