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

Is this repo still actively maintained @me-no-dev? Or are there any maintained fork(s) out there. Will this become part of the [arduino-esp32](https://github.com/espressif/arduino-esp32)? Thank you.

@me-no-dev Hello. Is it possible to make a "Keep-Alive" effect? So that the web server does not close the socket for a while?

This library appears to have no published GitHub releases. It would be nice to have periodic, numbered releases published so users can (among other things) reference which version they are...

The installing the latest 3.1.0 version of ESP32 by ESpressif System continuously restarts the esp32 with the error: assert failed: tcp_alloc /IDF/components/lwip/lwip/src/core/tcp.c:1851 (required to lock the TCPIP core functionality!) After...

How to get query params on client connect event. Already try server->url() and can't get any query params

Implements the solution by @A40in in issue #951 Closes #951

### Board Settings I use Arduino IDE 2.3.3 version ![image](https://github.com/user-attachments/assets/bf09d1e0-3571-44a2-9841-313f5eb567c6) ### Code ``` #ifdef ESP8266 #include #include #elif defined(ESP32) #include #include #else #error "Board not found" #endif #include AsyncWebServer Server(80);...

when building with esp-idf v5.3.1 for esp32s3 I am getting: -devkitm-1/lib751/libESP Async WebServer.a(AsyncWebSocket.cpp.o):(.literal._ZN17AsyncWebLockGuardC5ERK12AsyncWebLock[_ZN17AsyncWebLockGuardC5ERK12AsyncWebLock]+0x0): undefined reference to `pxCurrentTCB' collect2: error: ld returned 1 exit status *** [.pio/build/esp32-s3-devkitm-1/firmware.elf] Error 1 seems pxCurrentTCB...