国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

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

這篇具有很好參考價值的文章主要介紹了微信native-v3版支付對接流程及demo。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

1.將p12證書轉(zhuǎn)為pem證書,得到商戶私鑰

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

密碼是:商戶id

2.將獲取到的apiclient_cert.pem證書,復制出這一塊內(nèi)容,其他的不要

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

3.下載這個工具包

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

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

4.在test包中運行

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

生成證書

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

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>

微信native-v3版支付對接流程及demo,微信文章來源地址http://www.zghlxwxcb.cn/news/detail-722232.html

6.測試示例

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統(tǒng)一下單
        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);
        }




    }
}

到了這里,關(guān)于微信native-v3版支付對接流程及demo的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務(wù),不擁有所有權(quán),不承擔相關(guān)法律責任。如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實不符,請點擊違法舉報進行投訴反饋,一經(jīng)查實,立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費用

相關(guān)文章

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包