Conversation
|
|
||
| if (httpCode != HTTP_CODE_OK) { | ||
| Serial.printf("[NET] Non-200 response: %d from URL %s\n", httpCode, url); | ||
| Serial.printf("[NET] HTTP response buffer: \n\n%s\n\n", http.getString()); |
There was a problem hiding this comment.
moved it earlier to do less memory management. getString() handles chunked, and errors probably shoudn't hopefully maybe be binary
|
works for me on my inkplate6v2 |
|
Thanks for working on this! The chunked encoding issue is real and needs fixing. However, I think we can solve this without adding an external library. The ESP32 The fix would be to write a small Note: I did use a LLM to help me research |
fixes #71 / #70
Use StreamUtils library to handle http chucked encoding responses.