esp32_https_server
esp32_https_server copied to clipboard
Alternative ESP32 Webserver implementation for the ESP32 Arduino Core, supporting HTTPS and HTTP.
**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...
**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...
**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...
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...
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...
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...
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...
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...