esp32_https_server icon indicating copy to clipboard operation
esp32_https_server copied to clipboard

Alternative ESP32 Webserver implementation for the ESP32 Arduino Core, supporting HTTPS and HTTP.

Results 96 esp32_https_server issues
Sort by recently updated
recently updated
newest added

**Describe the bug** The readLine-Function in HTTPConnection.cpp leads to end endless-loop, when the newChar is the last char in the buffer. Then (_bufferProcessed+1 < _bufferUnusedIdx) is never true and the...

I have an issue where delivering pages results in a LoadProhibited exception on a pretty constant basis, the decoded exception results are as follows: Decoding stack results 0x40193c9d: SSL_pending at...

I am trying to access the HTTPS server through ethernet, to achieve this I have modified the HTTPS (Async Server Example) code to handle an ethernet connection (by adding an...

We are having a web server, On the dashboard page trying to fetch the data dynamically. Using the HTTPS server, Not able to trigger a function to read the data...

Remastered to use esp_tls.h and latest framework

**Describe Your Goal** In project examples there is an easy printf way to write html code to library, line by line... Like this: res->println(""); But when it comes to real...

I would like to get the client connection status. What should I do it? ```c++ void handleRoot(HTTPRequest * req, HTTPResponse * res) { String head = "--Hello\r\nContent-Type: image/jpeg\r\n\r\n"; String tail...

The #include could not be found with the latest arduino esp32 (2.0.4).

V3 arduino-esp32 Library introduces support of ESp32-C6 and other new SoC's. Unfortunately, it looks like "openssl/ssl.h" is abandoned and the recommendation is to use esp_tls.h instead.