2

我需要从 POS(销售点)(http)向支付终端(https)发出 POST 请求,它们连接在我的本地网络中。当我从 Postman 发出请求时,一切正常,但每当我从 POS 发出请求时,我都会收到错误“POST https://myIPaddress:8443/nexo/ net::ERR_CERT_AUTHORITY_INVALID”

我尝试使用 xhr 对象并使用 jquery 发出请求,但我一直遇到同样的错误

jQuery

const settings = {
      async: true,
      crossDomain: true,
      url: 'https://myIPAdress:8443/nexo/',
      method: "POST",
      data: JSON.stringify({
        data
      })
    };

    $.ajax(settings).done(function (response) {
      console.log(response);
    });

JS/xhr

var data = JSON.stringify({
      data
    });

    var xhr = new XMLHttpRequest();
    xhr.withCredentials = true;

    xhr.addEventListener("readystatechange", function () {
      if (this.readyState === 4) {
        console.log(this.responseText);
      }
    });

    xhr.open("POST", "https://myIPAdress:8443/nexo");

    xhr.send(data);

  });

我希望能够将 POST 请求从 POS 发送到支付终端。

4

1 回答 1

2

经过一些研究,这个问题原来与浏览器在提供无效证书时不允许通过 HTTPS 请求本地主机有关。为了在 chrome 中允许这些具有这些特征的请求,必须转到 chrome://flags/ 并启用“允许从 localhost 加载的资源的无效证书”选项。

在 Firefox 类似的情况下,必须允许本地主机上的自签名证书,这里有一篇关于如何解决这个问题的优秀文章

在我应用此更改后,我能够提出成功的请求。

于 2019-05-15T12:50:23.873 回答