Ionic 2:基于客户端证书的身份验证HTTP请求

时间:2017-03-30 14:51:51

标签: angular authentication ionic-framework ionic2 client-certificates

是否有人已经使用基于证书的身份验证实施HTTP请求? 当我在手机上使用Chrome浏览器打开后端服务的URL时,它要求提供客户端证书,这很好。当我在Ionic 2应用程序中打开URL时,只有“ERROR EMPTY RESPONSE”。 有谁知道如何处理这个? 我愿意接受任何想法, 感谢

1 个答案:

答案 0 :(得分:-1)

您可以尝试此代码。如果您收到任何错误,请发表评论。

$http({ method: 'POST' or 'GET', url: //where your api locate, data: data, headers : { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' } }).then(function successCallback(response) { //response }, function errorCallback(err) { console.log(err); });

希望这对您有用:)