使用axios获取ERR_CERT_AUTHORITY_INVALID

时间:2019-03-27 15:53:03

标签: vue.js vuejs2 axios

我正在尝试通过https与vue-axios进行发布请求。 但是,由于我使用的是我创建的自签名证书,因此出现以下错误:

  

net :: ERR_CERT_AUTHORITY_INVALID

在搜索后,我发现大多数人可以通过执行以下操作

来解决此问题
const instance = axios.create({
  httpsAgent: new https.Agent({  
    rejectUnauthorized: false
  })
});
instance.get('https://something.com/foo');

// At request level
const agent = new https.Agent({  
  rejectUnauthorized: false
});
axios.get('https://something.com/foo', { httpsAgent: agent });

我尝试了两种选择,但都没有成功。 我将npm https模块用于https.Agent。

有人知道如何解决这个问题吗?还是应该从axios更改为其他模块?

编辑:

我正在运行的代码段出现了错误:

const axiosInstance = axios.create({
  baseURL: 'https://localhost:5000',
  httpsAgent: new https.Agent({
    rejectUnauthorized: false
  }),
});
axiosInstance.post('/user', LoginRequest, 
  { headers: { 'Content-Type': 'application/json' } })
    .then(response => this.assignLogin(response.data));

试图更改为名为“ needle”的模块并使用https,但有相同的错误:

针头:

      const headers = { 'Content-Type': 'application/json' };
      const options = {
          method: 'POST',
          headers: headers,
          rejectUnauthorized: false,
          requestCert: true,
          agent: false,
          strictSSL: false,
      }
      needle.post('https://localhost:5000/user', LoginRequest, options).on('end', function() { })

https:

const options = {
         hostname: 'localhost',
         port: 5000,
         path: '/user',
         strictSSL: false,
         rejectUnauthorized: false,
         secureProtocol: 'TLSv1_method',
         method: 'POST',
         headers: {
           'Content-Type': 'application/json',
         },
       };
       const req = https.request(options, (res) => {
         console.log('statusCode:', res.statusCode);
         console.log('headers:', res.headers);

         res.on('data', (d) => {
           this.assignLogin(d);
         });
       });
       req.on('error', (e) => {
         console.error(e);
       });
       req.write(LoginRequest);
       req.end();

1 个答案:

答案 0 :(得分:0)

由于您提到您正在“使用自己创建的自签名证书”,所以我猜您正在将其用于本地开发测试。在Chrome中进行本地测试时,我遇到了类似的问题。

由于此错误消息(net::ERR_CERT_AUTHORITY_INVALID)是Chrome阻止带有“不安全”证书的URL的一种方式,因此您需要通过Chrome解决此问题,并告诉您您信任该证书。
我使用的解决方案是旧的thisisunsafe。 (如果您真正信任证书,则仅使用此解决方案,即,这是您自己的证书):

解决方案:只需在Chrome中打开一个标签,尝试使用服务器地址(在您的情况下为https://localhost:5000/)打开一个URL。 Chrome将显示警告消息,因此您单击窗口中的任意位置,然后键入thisisunsafe。 Chrome现在将允许访问此证书。当您再次重新加载客户端并尝试请求服务器时,它将起作用。