소스 검색

🐛 #1378 修复微信支付查询分账接口报签名失败的问题

dev1
lixuankun 5 년 전
committed by Binary Wang
부모
커밋
ac935c5c66
2개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -0
      weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/profitsharing/ProfitSharingQueryRequest.java
  2. +0
    -1
      weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/ProfitSharingServiceImpl.java

+ 5
- 0
weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/profitsharing/ProfitSharingQueryRequest.java 파일 보기

@@ -51,4 +51,9 @@ public class ProfitSharingQueryRequest extends BaseWxPayRequest {
protected void checkConstraints() throws WxPayException {
this.setSignType(WxPayConstants.SignType.HMAC_SHA256);
}

@Override
public boolean ignoreAppid() {
return true;
}
}

+ 0
- 1
weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/ProfitSharingServiceImpl.java 파일 보기

@@ -76,7 +76,6 @@ public class ProfitSharingServiceImpl implements ProfitSharingService {

@Override
public ProfitSharingQueryResult profitSharingQuery(ProfitSharingQueryRequest request) throws WxPayException {
if (true) throw new WxPayException("暂不支持,微信一直返回签名失败");
request.checkAndSign(this.payService.getConfig());
String url = this.payService.getPayBaseUrl() + "/pay/profitsharingquery";



불러오는 중...
취소
저장