ESPAsyncWebServer icon indicating copy to clipboard operation
ESPAsyncWebServer copied to clipboard

Async Web Server for ESP8266 and ESP32

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

P2040: Add support for the RP2040. This patch is a small patch that adds in the required ifdefs to make the async web server work on the RP2040 platform. It...

hi, the header Content-Disposition create a bug in this case : explorer : Safari html page called in mode gzip ( HTTP compress ) ( GET /index.html HTTP/1.1 Host: xxx...

Hi there, since the regular chunked response was not enough for me (because my chunks are randomly placed in memory), I added some functionality to be able to feed some...

Don't just trust the content type header, check for the content for parameters too. This is useful when JSON is posted with the content type application/x-www-form-urlencoded. It should not be...

I get this error: ` error: invalid conversion from 'const AsyncWebParameter*' to 'AsyncWebParameter*' [-fpermissive]` In this line: `AsyncWebParameter* p = request->getParam(i);` What's the problem?? I never get it...just new pc...

To know how full the client queue is - and do only 'lossless' things if the queue is not too full

C:\Users\steph\OneDrive\Arduino\libraries\ESPAsyncWebServer\src\WebAuthentication.cpp: In function 'bool getMD5(uint8_t*, uint16_t, char*)': C:\Users\steph\OneDrive\Arduino\libraries\ESPAsyncWebServer\src\WebAuthentication.cpp:74:3: error: 'mbedtls_md5_starts_ret' was not declared in this scope; did you mean 'mbedtls_md5_starts'? 74 | mbedtls_md5_starts_ret(&_ctx); | ^~~~~~~~~~~~~~~~~~~~~~ | mbedtls_md5_starts C:\Users\steph\OneDrive\Arduino\libraries\ESPAsyncWebServer\src\WebAuthentication.cpp:75:3: error: 'mbedtls_md5_update_ret'...

[edited based on discussions] The situation with ESPAsyncWebServer is a mess: - the [original repo](https://github.com/me-no-dev/ESPAsyncWebServer) appears to be unmaintained, and is extremely buggy - this repo is quite popular and...

The newest release of the ESP32 core for Arduino (3.x) comes with [some breaking changes](https://docs.espressif.com/projects/arduino-esp32/en/latest/migration_guides/2.x_to_3.0.html). Among other things, the underlying ESP-IDF updated from 4.4 to 5.1, in turn [updating mbed...

When installing the ESP32 V3.0.0 new some function are removed and or changed changing the following will resolve compile error with the libraries major version V2 and V3. Changed in...