使用Angular2我一直在进行HTTP调用:
var headers = new Headers();
// headers.append('Content-Type', 'application/json');
headers.append('Content-Type', 'application/x-www-form-urlencoded');
this.http.post(
'http://192.168.1.100',
{headers: headers}
).map(
(res:Response)=>res.json())
.subscribe(
(response) => {
},
(err) => {
},
() => {
}
); //end of subscribe
我知道需要拨打Facebook的API,这需要HTTPS,但我无法在Angular2文档中找到有关HTTPS调用的任何内容。你如何在Angular2中进行HTTPS调用?
答案 0 :(得分:0)
在使用Http类的方法时,在您提供的URL中指定https协议没有别的办法:
this.http.post(
'https://some-address',
{headers: headers}
).map(...);