http-proxy是否可以不向服务器转发请求,但是立即返回带有错误代码的响应,例如401未经授权?
我需要分析请求正文,在某些情况下不要将请求转发给服务器。
可以做到吗?
或者http-proxy只能修改请求和响应,但请求总是应该转发到服务器?
答案 0 :(得分:1)
你可以尝试这样做:
const server = http.createServer((req, res) => {
if(/*your auth check*/){
//return the 401 error
}
//auth check is passed, pass the request to the proxy
proxy.web(req, res, { target: 'http://your.target' });
});