-
Notifications
You must be signed in to change notification settings - Fork 28
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
Support non-UTF8 requests #11
Comments
It should also support binary data, and streaming, and MIME in general. I think the fundep on |
@rightfold Agreed. Not sure where you mean the functional dependency is, though? |
Fundep from body reader type to body type. class ReadableBody req m b | req -> b |
Yes, you're absolutely right. I'll try loosening that, and adding some more instances. Regarding binary, I could add an instance for getting an For streaming, exposing the request's |
Well, where "read once" means "read until exhausted." |
Regarding this issue, it should only be about the |
The
String
instance ofreadBody
in the Node server assumesUTF8
, it should check Content-Type header.The text was updated successfully, but these errors were encountered: