-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Http body already parsed #22
Comments
What version of |
Oh, sorry. |
Sorry, I taked mistake during write this issue. A module that I tried is clova-cek-sdk-nodejs. Because the module expect the type of req.body is string or Buffer or parseable by body-parser, I did a workaround previous wrote. However, body-parser expect a req is behave like stream. Because the IncomingMessage that you provide is not behave like stream, then become to no response. |
This appears to be a duplicate of #15 where the req object isn't a stream.
|
Thank you for your great product!!
I love it. :)
I found a compatibility issue between pure-express and azure-function-express.
In pure-express, the request body is not parsed. It is raw data.
In azure-function-express, the request body is already parsed. It is object.
My workaround is as below:
I couldn't use bodyParser module on azure-function-express.
The text was updated successfully, but these errors were encountered: