微信支付修复2.8.2.BETA版本引入的签名问题

This commit is contained in:
Binary Wang
2017-10-13 10:47:45 +08:00
parent 65ef21b280
commit 2ab389e84f
2 changed files with 5 additions and 12 deletions

View File

@@ -147,10 +147,8 @@ public abstract class WxPayServiceAbstractImpl implements WxPayService {
}
String responseContent = this.post(url, request.toXML(), true);
WxPaySendRedpackResult result = WxPayBaseResult.fromXML(responseContent, WxPaySendRedpackResult.class);
//毋须校验,因为没有返回签名信息
// this.checkResult(result);
return result;
//无需校验,因为没有返回签名信息
return WxPayBaseResult.fromXML(responseContent, WxPaySendRedpackResult.class);
}
@Override