我是新来的角度,我有以下问题好心帮。如果我让POST请求从我的角度代码发送到第三方API我怎么能保证我的POST请求的数据不会被其他人砍死和操纵。
晴http://
POST请求更容易破解您发送POST请求的数据。 ,以确保安全,你需要在https://
发送数据
在角,可以拦截用下面的代码的HTTP请求,并使其固定。
// clone request and replace 'http://' with 'https://' at the same time
const secureReq = req.clone({
url: req.url.replace('http://', 'https://')
});
// send the cloned, "secure" request to the next handler.
return next.handle(secureReq);
Here is official documentation
希望这将有助于!