-
Notifications
You must be signed in to change notification settings - Fork 19
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
Chunked responses #27
Comments
was trying to implement So if we transform the body into "chunked style" and send through nodejs, it will be shown "as-is" on the receiver side. So I mean this should probably be handled at container level |
Yes and no. First, there should be a standalone functionality that is of type |
same problem here, tink_http ( PHP7 target ) throws the same error when acessing Google Geocoding API ( i.e "https://maps.googleapis.com/maps/api/geocode/json?address=Place%20de%20l%27%C3%A9toile%20Paris" )
|
Wait, Why are both these issues closed? |
Which ones? ^^ |
Regarding |
chunked encoding is not implemented in the SocketClient right now, and this issue is an umbrella covering that and all other chunk-related things. |
This came up in #18.
To my understanding, this could be implemented as a function of type
OutgoingResponse->OutgoingResponse
. If the argument already has aContent-Length
it would be returned as is, otherwise a new response would be constructed that uses chunked encoding. The tricky bit is in writing theIdealSource->IdealSource
transformation for the body.Not sure when I'll get around to do this. Volunteers are welcome. Or let me know if this becomes a pressing issue ;)
The text was updated successfully, but these errors were encountered: