我将 http2 与 express 一起使用,出现错误 "Cannot set deprecated header: connection"
i am using http2 with express , getting error "Cannot set deprecated header: connection"
我在我的应用程序中使用 http2 和 express。并使用 http-proxy 将请求代理到其他 API。当我在 express 中点击代理 API 时,我得到 "Cannot set deprecated header: connection"。似乎 http-proxy 会自动添加连接 header,但已弃用。我尝试使用 "request" 而不是 http-proxy,仍然是同样的错误。
这是http-proxy的问题。 http-proxy 尝试写入 http2 中不允许的连接 header 导致错误。
我在我的应用程序中使用 http2 和 express。并使用 http-proxy 将请求代理到其他 API。当我在 express 中点击代理 API 时,我得到 "Cannot set deprecated header: connection"。似乎 http-proxy 会自动添加连接 header,但已弃用。我尝试使用 "request" 而不是 http-proxy,仍然是同样的错误。
这是http-proxy的问题。 http-proxy 尝试写入 http2 中不允许的连接 header 导致错误。