ESPAsyncWebServer icon indicating copy to clipboard operation
ESPAsyncWebServer copied to clipboard

Async Web Server for ESP8266 and ESP32

Results 181 ESPAsyncWebServer issues
Sort by recently updated
recently updated
newest added

hello. I'm building a little framework for manage a complex automation, then the URIs are not gonna be the same every time.. then I was intending to use AsyncWebHandler, but...

After eight hours of work, i discovered that the Web Socket Event that i copied and pasted from the example is sending a string to the port very quickly and...

Please add a Licence that clarifies the use of the ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) library.

stale

ESP8266 goin down when get string. {"DataType":"CONTROL_DATA","pwm1Speed":"100","pwm2Speed":"1023"} another strings like {"DataType":"CONTROL_DATA","pwm1Speed":"0","pwm2Speed":"0"} work good no any modifications in example code! i get response from server and then microcontroller goin to reboot:...

Hi, I'm using a simple fileupload to littleFS partition. input type="file" name='filesystem' webkitdirectory mozdirectory server->on("/doUpload", HTTP_POST, [](AsyncWebServerRequest *request) {}, std::bind(&handleFiles::handleUpload, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4, std::placeholders::_5, std::placeholders::_6)); void handleFiles::handleUpload(AsyncWebServerRequest *request,...

Good day! i was send very long string. At the start it was good but then i will get unknown numbers. ws[/ws][1] frame[3] text[36246 - 36782]: 76 76 76 76...

Here in issue #102 file `ESP8266 SPIFFS File Editor` has been mentioned and someone posted a modified code starting with: ``` ``` The comment says the **code is part of...

I would prefer to do something like this: ```cpp if (request->method() == HTTP_HEAD) { response = request->beginResponse(200, "application/octet-stream", ""); response->setContentLength(0); response->setSendContentLength(false); // ????? response->addHeader("Content-Length", String(FinalDataSize)); } ``` Instead, I have...

POST endpoint does not accept content type: `application/x-www-form-urlencoded` this content type is used for form data submission in html. because we are using POST request the form data will not...

I didn't quite find anything in the documentation in this regard, how can I remove the `Accept-Ranges: none` response header when sending out a file? Do I need to collect...