编程语言
首页 > 编程语言> > node 代理自定义证书接口

node 代理自定义证书接口

作者:互联网

代码如下:

const request = require('request');
// 访问第三个接口
function getapi(data) {
    return new Promise((resolve, reject) => {
        request({
            //解决node.js https模块在v12+中默认使用的TLS1.3,而服务器的TLS不是,如图是TLS1.0。导致报TLS错误
            port: 443,
            secureProtocol: "TLSv1_method",
            strictSSL: false,           //解决不支持自签名证书。
            url: 'https://******//LoginHandler.ashx?username=' + data.username + '&password=' + data.password,
            method: 'GET',
            json: true,
            headers: {
                "content-type": "application/json",
            },
        }, function (error, response, body) {
            if (!error && response.statusCode == 200) {
                resolve(body)
            } else {
                reject(error)
            }

        });
    })

}

 

标签:node,function,自定义,request,接口,json,error,data,TLS
来源: https://www.cnblogs.com/zxh-bug/p/16477840.html