节点 http-proxy - HTTP 消息包含非法 headers
Node http-proxy - HTTP message contains illegal headers
使用节点 http-proxy 模块,我在使用 GET
代理到主机时没有任何问题。但是当我使用 POST
和代理到同一主机时,我得到 Status Code:400 Bad Request
和 HTTP message contains illegal headers
。
我查看了 proxyReq
headers,它们看起来不错,与成功获取时使用的 headers 完全相同。
_headers:
{ 'x-forwarded-proto': 'http',
'x-forwarded-port': '9000',
'x-forwarded-for': '::ffff:10.3.117.47',
'accept-language': 'en-US,en;q=0.8',
'accept-encoding': 'gzip,deflate,sdch',
'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.101 Safari/537.36',
accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
'cache-control': 'no-cache',
pragma: 'no-cache',
connection: 'close',
host: '10.1.1.1:9000',
'x-auth-token': 'tokenStuff'
}
附带说明一下,如果我在不使用代理的情况下直接向代理主机发出相同的 api 调用,我不会收到此消息。相同的 post 和 json 负载和 headers
回答:这是 http-proxy 选项 xfwd: true
导致的。
使用节点 http-proxy 模块,我在使用 GET
代理到主机时没有任何问题。但是当我使用 POST
和代理到同一主机时,我得到 Status Code:400 Bad Request
和 HTTP message contains illegal headers
。
我查看了 proxyReq
headers,它们看起来不错,与成功获取时使用的 headers 完全相同。
_headers:
{ 'x-forwarded-proto': 'http',
'x-forwarded-port': '9000',
'x-forwarded-for': '::ffff:10.3.117.47',
'accept-language': 'en-US,en;q=0.8',
'accept-encoding': 'gzip,deflate,sdch',
'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.101 Safari/537.36',
accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
'cache-control': 'no-cache',
pragma: 'no-cache',
connection: 'close',
host: '10.1.1.1:9000',
'x-auth-token': 'tokenStuff'
}
附带说明一下,如果我在不使用代理的情况下直接向代理主机发出相同的 api 调用,我不会收到此消息。相同的 post 和 json 负载和 headers
回答:这是 http-proxy 选项 xfwd: true
导致的。