mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-03 12:17:46 +08:00
🐛 #1378 修复微信支付查询分账接口报签名失败的问题
This commit is contained in:
parent
75421148e2
commit
ac935c5c66
@ -51,4 +51,9 @@ public class ProfitSharingQueryRequest extends BaseWxPayRequest {
|
|||||||
protected void checkConstraints() throws WxPayException {
|
protected void checkConstraints() throws WxPayException {
|
||||||
this.setSignType(WxPayConstants.SignType.HMAC_SHA256);
|
this.setSignType(WxPayConstants.SignType.HMAC_SHA256);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean ignoreAppid() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -76,7 +76,6 @@ public class ProfitSharingServiceImpl implements ProfitSharingService {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ProfitSharingQueryResult profitSharingQuery(ProfitSharingQueryRequest request) throws WxPayException {
|
public ProfitSharingQueryResult profitSharingQuery(ProfitSharingQueryRequest request) throws WxPayException {
|
||||||
if (true) throw new WxPayException("暂不支持,微信一直返回签名失败");
|
|
||||||
request.checkAndSign(this.payService.getConfig());
|
request.checkAndSign(this.payService.getConfig());
|
||||||
String url = this.payService.getPayBaseUrl() + "/pay/profitsharingquery";
|
String url = this.payService.getPayBaseUrl() + "/pay/profitsharingquery";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user