111 lines
4.6 KiB
Java
111 lines
4.6 KiB
Java
package com.java.demo;
|
||
|
||
import com.java.utils.WXPayUtility; // 引用微信支付工具库,参考:https://pay.weixin.qq.com/doc/v3/merchant/4014931831
|
||
|
||
import com.google.gson.annotations.SerializedName;
|
||
import com.google.gson.annotations.Expose;
|
||
import okhttp3.MediaType;
|
||
import okhttp3.OkHttpClient;
|
||
import okhttp3.Request;
|
||
import okhttp3.RequestBody;
|
||
import okhttp3.Response;
|
||
|
||
import java.io.IOException;
|
||
import java.io.UncheckedIOException;
|
||
import java.security.PrivateKey;
|
||
import java.security.PublicKey;
|
||
import java.util.ArrayList;
|
||
import java.util.HashMap;
|
||
import java.util.List;
|
||
import java.util.Map;
|
||
|
||
/**
|
||
* 查询剩余待分金额
|
||
*/
|
||
public class QueryOrderAmount {
|
||
private static String HOST = "https://api.mch.weixin.qq.com";
|
||
private static String METHOD = "GET";
|
||
private static String PATH = "/v3/profitsharing/transactions/{transaction_id}/amounts";
|
||
|
||
public static void main(String[] args) {
|
||
// TODO: 请准备商户开发必要参数,参考:https://pay.weixin.qq.com/doc/v3/merchant/4013070756
|
||
QueryOrderAmount client = new QueryOrderAmount(
|
||
"19xxxxxxxx", // 商户号,是由微信支付系统生成并分配给每个商户的唯一标识符,商户号获取方式参考 https://pay.weixin.qq.com/doc/v3/merchant/4013070756
|
||
"1DDE55AD98Exxxxxxxxxx", // 商户API证书序列号,如何获取请参考 https://pay.weixin.qq.com/doc/v3/merchant/4013053053
|
||
"/path/to/apiclient_key.pem", // 商户API证书私钥文件路径,本地文件路径
|
||
"PUB_KEY_ID_xxxxxxxxxxxxx", // 微信支付公钥ID,如何获取请参考 https://pay.weixin.qq.com/doc/v3/merchant/4013038816
|
||
"/path/to/wxp_pub.pem" // 微信支付公钥文件路径,本地文件路径
|
||
);
|
||
|
||
QueryOrderAmountRequest request = new QueryOrderAmountRequest();
|
||
request.transactionId = "4208450740201411110007820472";
|
||
try {
|
||
QueryOrderAmountResponse response = client.run(request);
|
||
// TODO: 请求成功,继续业务逻辑
|
||
System.out.println(response);
|
||
} catch (WXPayUtility.ApiException e) {
|
||
// TODO: 请求失败,根据状态码执行不同的逻辑
|
||
e.printStackTrace();
|
||
}
|
||
}
|
||
|
||
public QueryOrderAmountResponse run(QueryOrderAmountRequest request) {
|
||
String uri = PATH;
|
||
uri = uri.replace("{transaction_id}", WXPayUtility.urlEncode(request.transactionId));
|
||
|
||
Request.Builder reqBuilder = new Request.Builder().url(HOST + uri);
|
||
reqBuilder.addHeader("Accept", "application/json");
|
||
reqBuilder.addHeader("Wechatpay-Serial", wechatPayPublicKeyId);
|
||
reqBuilder.addHeader("Authorization", WXPayUtility.buildAuthorization(mchid, certificateSerialNo, privateKey, METHOD, uri, null));
|
||
reqBuilder.method(METHOD, null);
|
||
Request httpRequest = reqBuilder.build();
|
||
|
||
// 发送HTTP请求
|
||
OkHttpClient client = new OkHttpClient.Builder().build();
|
||
try (Response httpResponse = client.newCall(httpRequest).execute()) {
|
||
String respBody = WXPayUtility.extractBody(httpResponse);
|
||
if (httpResponse.code() >= 200 && httpResponse.code() < 300) {
|
||
// 2XX 成功,验证应答签名
|
||
WXPayUtility.validateResponse(this.wechatPayPublicKeyId, this.wechatPayPublicKey,
|
||
httpResponse.headers(), respBody);
|
||
|
||
// 从HTTP应答报文构建返回数据
|
||
return WXPayUtility.fromJson(respBody, QueryOrderAmountResponse.class);
|
||
} else {
|
||
throw new WXPayUtility.ApiException(httpResponse.code(), respBody, httpResponse.headers());
|
||
}
|
||
} catch (IOException e) {
|
||
throw new UncheckedIOException("Sending request to " + uri + " failed.", e);
|
||
}
|
||
}
|
||
|
||
private final String mchid;
|
||
private final String certificateSerialNo;
|
||
private final PrivateKey privateKey;
|
||
private final String wechatPayPublicKeyId;
|
||
private final PublicKey wechatPayPublicKey;
|
||
|
||
public QueryOrderAmount(String mchid, String certificateSerialNo, String privateKeyFilePath, String wechatPayPublicKeyId, String wechatPayPublicKeyFilePath) {
|
||
this.mchid = mchid;
|
||
this.certificateSerialNo = certificateSerialNo;
|
||
this.privateKey = WXPayUtility.loadPrivateKeyFromPath(privateKeyFilePath);
|
||
this.wechatPayPublicKeyId = wechatPayPublicKeyId;
|
||
this.wechatPayPublicKey = WXPayUtility.loadPublicKeyFromPath(wechatPayPublicKeyFilePath);
|
||
}
|
||
|
||
public static class QueryOrderAmountRequest {
|
||
@SerializedName("transaction_id")
|
||
@Expose(serialize = false)
|
||
public String transactionId;
|
||
}
|
||
|
||
public static class QueryOrderAmountResponse {
|
||
@SerializedName("transaction_id")
|
||
public String transactionId;
|
||
|
||
@SerializedName("unsplit_amount")
|
||
public Long unsplitAmount;
|
||
}
|
||
|
||
}
|