发送 https 请求 Node.js 和 API 时出现错误:getaddrinfo ENOTFOUND

问题描述 投票:0回答:3

我正在开发一个仪表板,我需要连接到 API 并捕获身份验证令牌,然后使用 HTTPS 协议发送信息。我使用 Nodejs,当我运行代码时,pm2 monit 上出现下一个错误:

Error: getaddrinfo ENOTFOUND my.url.net/path
at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:67:26) {
errno: -3008,
code: 'ENOTFOUND',
syscall: 'getaddrinfo',
hostname: 'my.url.net/path'
}

这也是我发出请求的代码(Node.js):

const path = require('path');
require('dotenv').config({path: path.join('path','.env')});
const https     = require('https');
const database = require('./sql');
const fs         = require ('fs');

const user = process.env.USER;
const pwd  = PWD;
const host = 'https://my.url.net/extencio';
const host_1 = 'my.url.net/extention';

async function getLoginToken(pForce){

 if (login_token.Health && !pForce) { return login_token }

  //Creates the POST request
  const options = {
    protocol: 'https:',
    hostname: host_1,
    path: '/api/auth/token',
    method: 'POST',
    headers: {
    'Accept': 'application/json',
    'Content-Type': 'application/json',
        }
  };

  //Body of the POST request, contains the user and password
  const post_data = JSON.stringify({username: user, password: pwd});

这是其余的代码:

return new Promise((resolve, reject) => {

    const req = new https.request(options, (response) => {
      response.setEncoding('utf8');
      response.on('data', function(chunk){
        const output = JSON.parse(chunk);

        if(output.token){
          login_token.Health = true;
          login_token.Token  = output.token;
          resolve(login_token)
        }

        else{
          login_token.Health = false;
          login_token.Token  = '';
          resolve(login_token);
        }
        
      });
    });
    req.write(post_data);
    req.end();
    
    req.on('error', function(err) {
      console.log(err);
      login_token.Health = false;
      login_token.Token  = '';
      resolve(login_token)
    });
    
  });
}
javascript node.js ssl npm https
3个回答
14
投票

去掉协议,只对主机使用域名。例如:

错误:

const host = 'https://my.url.net/extencio'
const path = '/api/auth/token'

正确:

const host = 'my.url.net'
const path = '/extencio/api/auth/token'

请参阅文档了解

http.request
选项。


0
投票

似乎正在尝试获取完整网址的addrinfo,而不仅仅是主机名。我会将主机名放在选项中仅作为“my.url.net”,并使用其余的 url 更新路径。


0
投票

@Eric0607 您提供的错误 stackoverflow.com/questions/65810720/… 不再显示,我可能已经来不及回复了。

但如果您遇到“无效的本地证书 SSL 错误”,这里有一个我发现适用的修复程序。 在代码中禁用 SSL 检查,不推荐,但它会暂时起作用,完成后打开它,否则可能有风险。

最新问题
© www.soinside.com 2019 - 2024. All rights reserved.