Sfoglia il codice sorgente

修复微信支付企业红包的问题:发送红包的返回结果中,没有签名,不需要进行签名检查。 #140

master
Binary Wang 8 anni fa
parent
commit
e2a1995963
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/impl/WxMpPayServiceImpl.java

+ 2
- 1
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/impl/WxMpPayServiceImpl.java Vedi File

@@ -179,7 +179,8 @@ public class WxMpPayServiceImpl implements WxMpPayService {
}
String responseContent = this.executeWithKey(url, request.toXML());
WxPaySendRedpackResult result = WxPaySendRedpackResult.fromXML(responseContent, WxPaySendRedpackResult.class);
this.checkResult(result);
//毋须校验,因为没有返回签名信息
// this.checkResult(result);
return result;
}



Caricamento…
Annulla
Salva