Skip to content

Commit

Permalink
🐛 #2634 【微信支付】修复财付通支付参数报签名错误问题
Browse files Browse the repository at this point in the history
  • Loading branch information
xifengzhu authored May 5, 2022
1 parent 6390dea commit 303a0ea
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ public TransactionsResult partner(TradeTypeEnum tradeType, PartnerTransactionsRe
@Override
public <T> T partnerTransactions(TradeTypeEnum tradeType, PartnerTransactionsRequest request) throws WxPayException {
TransactionsResult result = this.partner(tradeType, request);
return result.getPayInfo(tradeType, request.getSpAppid(),
String appId = request.getSubAppid() != null ? request.getSubAppid() : request.getSpAppid();
return result.getPayInfo(tradeType, appId,
request.getSpMchid(), payService.getConfig().getPrivateKey());
}

Expand Down

0 comments on commit 303a0ea

Please sign in to comment.