Skip to content

Commit

Permalink
🐛 【小程序】修复获取运力id列表接口传参问题
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywang committed Jul 15, 2024
1 parent 7262699 commit f5bb2ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public QueryFollowTraceResponse queryFollowTrace(

@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));
Expand Down

0 comments on commit f5bb2ba

Please sign in to comment.