Replies: 3 comments 36 replies
-
not a bug but a usage issue - please open a discussion as explained in the issue template - issues are for real bugs. thanks! |
Beta Was this translation helpful? Give feedback.
-
@me-no-dev Here is my handler of requests to ESP via
It reads large JSON and then it is processed by functions. They form requests to my UART module and exit onBody. I am waiting for responses from UART devices in loop()
|
Beta Was this translation helpful? Give feedback.
-
Added a new card in our board to have a look. I my memory is right about how this works, we should be able to support request continuation by providing a |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I previously used this library from the old repository. I decided to upgrade, and after the upgrade, I started having errors when requesting my API. The fact is that the last request for which the error was delayed, I'll explain:
As far as I understand, as soon as I exit the handler
WebServer.on("/api", HTTP_POST, [this](AsyncWebServerRequest *request) {}, NULL, [this](AsyncWebServerRequest *request, uint8_t *data, size_t len, size_t index, size_t total){});
it immediately closes the connection, how to resolve this issue?
Beta Was this translation helpful? Give feedback.
All reactions