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)
            }

        });
    })

}

 

原创文章,作者:254126420,如若转载,请注明出处:https://blog.ytso.com/274341.html

(0)
上一篇 2022年7月14日
下一篇 2022年7月14日

相关推荐

发表回复

登录后才能评论