代码如下:
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) } }); }) }