mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-23 22:11:40 +08:00
🐛 #1856 【微信支付】修复电商收付通查询退款状态的接口地址
This commit is contained in:
parent
b693c5fb4e
commit
9850151dfa
@ -226,7 +226,7 @@ public class EcommerceServiceImpl implements EcommerceService {
|
||||
|
||||
@Override
|
||||
public RefundQueryResult queryRefundByOutRefundNo(String subMchid, String outRefundNo) throws WxPayException {
|
||||
String url = String.format("%s/v3/ecommerce/applyments/out-request-no/%s?sub_mchid=%s", this.payService.getPayBaseUrl(), outRefundNo, subMchid);
|
||||
String url = String.format("%s/v3/ecommerce/refunds/out-refund-no/%s?sub_mchid=%s", this.payService.getPayBaseUrl(), outRefundNo, subMchid);
|
||||
String response = this.payService.getV3(URI.create(url));
|
||||
return GSON.fromJson(response, RefundQueryResult.class);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user