node後臺fetch請求數據-Hostname/IP doesn't match certificate's altnames解決方法

 

   1、問題背景javascript

     基於express框架,node後臺fetch請求數據,報錯Hostname/IP doesn't match certificate's altnames。。。。。java

require('isomorphic-fetch');

fetch(url)

二 、兩種方式解決。node

  一、設置rejectUnauthorized:falseexpress

const https = require("https");

const options = {
  agent: new https.Agent({
    rejectUnauthorized: false
  })
};

fetch(url, options)

  二、當前服務器hosts 文件設置api

// hosts文件配置
10.x.x.x  api.weixin.qq.com



// 以前訪問的URL爲,那麼就對應到了10.x.x.x的服務器轉發了
fetch('api.weixin.qq.com/getticket/xxxxx')

// 若是10.x.x.x代理服務器有端口號8090,那麼fetch地址也要加上端口號8090

fetch('api.weixin.qq.com:8090/getticket/xxxxx')
相關文章
相關標籤/搜索