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 97 esp32_https_server issues
Sort by recently updated
recently updated
newest added

**Describe Your Goal** I'm creating a wrapper around esp32_https_server to that has the same API as WebServer.h and WebServerSecure.h. **What Does Your Project Look Like** The WebServerSecure.h sequence of doing...

question

**Describe the bug** The implementation of the WebSocket handler is not correct regarding the representation of the frame length. As shown in PRs #59 and #60, the `WebsocketHandler` used a...

bug

**Describe the bug** The server accept websocket upgrades on non-websocket routes. **How To Reproduce** Steps to reproduce the behavior (example): 1. Flash the chat example to the device. 2. Open...

bug

I'm using a sample file in the Examples/Async-Server directory. I need to send very large response files. Currently, communication looks like this: 1) receiving the request from the client 1...

feature
question

I´m trying to send a POST request from a vue web app to ESP32 https sever. If i use postman or curl it works fine, but i cant get it...

question

Certificates can be created on Windows with OpenSSL like this: First, generate CA certificate: ``` C:\OpenSSL-Win32\bin\openssl req -x509 -new -key rootCA.key -days 10000 -out rootCA.crt ``` Then create cmd script...

feature

Hi I've tried you HTTPS-and-HTTP.ino excample and it works fine for IPv4. Currently I'm trying to use IPv6 instead. I have configured the WIFI to get an IPv6 addres which...

Hey, now a days push notifications are the best thing for browsers to send alerts can you please add that feature in this library which fire push events from the...

feature
help wanted

The server should support web sockets (see #9 for reference).

feature

To allow a connection to be "kept-alive" for big responses, [chunked data encoding](https://en.wikipedia.org/wiki/Chunked_transfer_encoding) could be an option. It can be added to the `HTTPResponse` class as an optional setting that...

feature