微信native-v3版支付对接流程及demo

1.将p12证书转为pem证书,得到商户私钥

openssl pkcs12 -in apiclient_cert.p12 -out apiclient_cert.pem -nodes

密码是:商户id

2.将获取到的apiclient_cert.pem证书,复制出这一块内容,其他的不要

3.下载这个工具包

https://github.com/wechatpay-apiv3/CertificateDownloader

4.在test包中运行

生成证书

5.引入腾讯的sdk

https://github.com/wechatpay-apiv3/wechatpay-apache-httpclient

复制代码
<dependency>

<groupId>com.github.wechatpay-apiv3</groupId>

<artifactId>wechatpay-apache-httpclient</artifactId>

<version>0.2.2</version>

</dependency>

6.测试示例

java 复制代码
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.wechat.pay.contrib.apache.httpclient.WechatPayHttpClientBuilder;
import com.wechat.pay.contrib.apache.httpclient.util.PemUtil;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.util.EntityUtils;

import java.io.ByteArrayOutputStream;
import java.io.FileInputStream;
import java.security.cert.X509Certificate;
import java.util.ArrayList;
import java.util.List;

public class test {


    public static void main(String[] args) throws Exception {
        String apiV3key = "SYKJ20234545weasdq";
        // 商户号
        String mchId = "150923821451";
        // 商户证书序列号
        String mchSerialNo = "79D9A85662A93453457720657B19";
        // 商户私钥
        String mchPrivateKeyFilePath = "D:\\可删除\\apiclient_cert.pem";
        // 微信支付平台证书
        String wechatpayCertificateFilePath = "E:\\allrun2\\微信支付证书工具\\wechatpay_38023669B5DBFED58B2B16B3D38CA15DB983E002.pem";
        //下载成功后保存证书的路径
        String outputFilePath = "E:\\allrun2\\微信支付证书工具";

        

        //native统一下单
        String nativePay = "https://api.mch.weixin.qq.com/v3/pay/transactions/native";

        WechatPayHttpClientBuilder builder = WechatPayHttpClientBuilder.create()
                .withMerchant(mchId, mchSerialNo, PemUtil.loadPrivateKey(new FileInputStream(mchPrivateKeyFilePath)));

        if (wechatpayCertificateFilePath == null) {
            //不做验签
            builder.withValidator(response -> true);
        } else {
            List<X509Certificate> certs = new ArrayList<>();
            certs.add(PemUtil.loadCertificate(new FileInputStream(wechatpayCertificateFilePath)));
            builder.withWechatpay(certs);
        }

        /*HttpGet httpGet = new HttpGet(CertDownloadPath);
        httpGet.addHeader("Accept", "application/json");

        try (CloseableHttpClient client = builder.build()) {
            CloseableHttpResponse response = client.execute(httpGet);
            int statusCode = response.getStatusLine().getStatusCode();
            String body = EntityUtils.toString(response.getEntity());
            if (statusCode == 200) {
                System.out.println("body:" + body);
            } else {
                System.out.println("download failed,resp code=" + statusCode + ",body=" + body);
                throw new IOException("request failed");
            }
        }*/
        HttpPost httpPost = new HttpPost(nativePay);
        httpPost.addHeader("Accept", "application/json");
        httpPost.addHeader("Content-type","application/json; charset=utf-8");
        ObjectMapper objectMapper = new ObjectMapper();

        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        ObjectNode rootNode = objectMapper.createObjectNode();
        rootNode.put("mchid",mchId)
                .put("appid", "wxf3152dbae1f27a61")
                .put("description", "Ima5677公仔")
                .put("notify_url", "http://2j9c780335.zicp.vip/siyu-cloud-pay-biz/pms/wechatPay/callback")
                .put("out_trade_no", "515414244");
        rootNode.putObject("amount")
                .put("total", 1);

        objectMapper.writeValue(bos, rootNode);
        httpPost.setEntity(new StringEntity(bos.toString("UTF-8")));
        try (CloseableHttpClient httpClient = builder.build()) {
            CloseableHttpResponse response = httpClient.execute(httpPost);
            String bodyAsString = EntityUtils.toString(response.getEntity());
            System.out.println(bodyAsString);
        }




    }
}
相关推荐
咬人喵喵6 小时前
E2编辑器里的零高容器是什么?怎么用?
低代码·微信·编辑器·交互·svg
虎头金猫1 天前
管理飞牛OS还在点点点?我用Ansible给它装了个远程遥控器
微信·开源·ansible·aigc·智能家居·开源软件·ai编程
Szime1 天前
深智微华润微代理一线实战CS57167半桥驱动在无人机电调中的国产替代选型指南
微信
阳明山水2 天前
LightGBM调优降MAPE至19%关键策略
人工智能·机器学习·微信·微信公众平台·微信开放平台
阳明山水3 天前
模型迭代实战:如何将准确率从75%提升到89%
数据结构·人工智能·算法·机器学习·微信·微信公众平台·微信开放平台
阳明山水6 天前
零售销量预测为何选LightGBM
人工智能·机器学习·微信·微信公众平台·微信开放平台
赛特·亮6 天前
利用WTAPI(WeChatapi)-robot-go 项目解析与实战指南
微信·面试·golang
largecode7 天前
打电话时,怎么让号码显示自己的品牌名称?办理号码认证服务流程
笔记·百度·微信·课程设计·微信公众平台·facebook·新浪微博
智慧医养结合软件开源7 天前
规范新增·精准赋能,凝聚志愿力量守护老人安康
大数据·安全·百度·微信·云计算
阳明山水8 天前
基于静态属性的聚类预测新商品销量
人工智能·机器学习·微信·微信公众平台·微信开放平台