🐛 #1148 修复微信支付拉取评论信息接口签名问题

This commit is contained in:
Ziyear
2019-08-09 09:26:46 +08:00
committed by Binary Wang
parent 9de72c7623
commit 2f372b4a39

View File

@@ -779,8 +779,8 @@ public abstract class BaseWxPayServiceImpl implements WxPayService {
@Override
public String queryComment(WxPayQueryCommentRequest request) throws WxPayException {
request.checkAndSign(this.getConfig());
request.setSignType(SignType.HMAC_SHA256);
request.checkAndSign(this.getConfig());
String url = this.getPayBaseUrl() + "/billcommentsp/batchquerycomment";
String responseContent = this.post(url, request.toXML(), true);