我正在使用外部API:https://example.com/
。浏览到这个时,我会得到一个弹出窗口,要求提供证书,我将其作为.pfx文件(或在我的钥匙串中作为.cer)。我接受他们访问证书并使用我的私钥签名并且瞧 - 我可以访问该页面。
现在我想要做的是在AngularJS中做到这一点。到目前为止我尝试的是:
$http.get("https://example.com/");
响应:
Failed to load resource: The server ”...” did not accept the certificate.
- 我将其翻译成另一种语言,只是让你知道。
我想要的是以某种方式在$ http请求中发送.pfx文件。我该怎么做?
答案 0 :(得分:0)
我在node.js中解决了这个问题,而在那里有证书选项。我使用了pfx
和passphrase
就是这样。但我不知道AngularJS是否可以这样做。