Description
Hello Team,
I've noticed an issue when using mojito to send post requests to a third party service: https://sheet.best/
When making a POST request with Mojito the service doesn't work, whereas the same post request sent from curl or httppoison does work (so it is not an issue with the third party service).
The reason the service doesn't work when requested with Mojito is due to Mojito forcing the transfer-encoding: chunked format on the request. I've written a quick gist comparing outputs between curl / httppoison / mojito: https://gist.github.com/avaitla/0d6fc2e1ee7a01325cda8e0e5dd28bae
Note that Mojito does NOT return the right results, since sheet.best cannot understand chunked transfer encoding.
Is there anyway that users of this library can disable this feature as not all external services (which we cannot control may not support this encoding).
Thank you,
- Anil