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

This commit is contained in:
Binary Wang
2017-02-14 16:57:53 +08:00
parent b2b04609db
commit e2a1995963

View 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;
}