You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I parse the request body myself before express-http-proxy and set the parsed value with proxyReqBodyDecorator.
But it seems that proxy does not send the self-parsed body.
There is a PR that fixes this already but have not been merged. Please merge it? #469
I don't see why parseReqBody = false should mean we have absolutely no access to the body. What if it's an XML string? I see no benefit in this library parsing the body in 2 known formats (x-ww-form-urlencoded or json) or else nothing is accessible. Just provide req.body as a string and let developers use other libraries or JSON.parse() to do the parsing.
I parse the request body myself before express-http-proxy and set the parsed value with proxyReqBodyDecorator.
But it seems that proxy does not send the self-parsed body.
There is a PR that fixes this already but have not been merged. Please merge it?
#469
This might also fix similar looking issue: #358
The text was updated successfully, but these errors were encountered: