esp32-http-server icon indicating copy to clipboard operation
esp32-http-server copied to clipboard

Toy HTTP server on top of LwIP netconn API, packaged as an ESP-IDF component

Results 10 esp32-http-server issues
Sort by recently updated
recently updated
newest added

Hi as reported in object, it seems that header "http_parser.h" is not included. regards

I'm using a handler rule for a specific URI ESP_ERROR_CHECK(http_register_handler(server, "/main.js", HTTP_GET, HTTP_HANDLE_RESPONSE, &cb_GET_file, "/spiflash/main.js")); During the execution of my program there is a need to cancel the rule made...

I'd like to POST WebCam image (M5 Camera) to another host. It seems to possible to use http_response_begin_multipart() and http_response_end_multipart(). I want to know how to set distination host address....

Added an example function that initializes the http server, receive a GET request and respond a HTML containing a "Hello World, from ESP32!" content. Documentation was updated.

Due to the http_ctx of the parse_urlencoded_args function, the http_request_get_arg_value was not saving the parsed key-value pairs from the body of the request.

HTTPS server option implemented based on mbedTLS server example. Both HTTPS and HTTP were tested with GET/POST examples.

http_handle_connection(): the call netbuf_delete(inbuf) must be moved inside the while loop: while (ctx->state != HTTP_REQUEST_DONE) { err = netconn_recv(conn, &inbuf); if (err != ERR_OK) { break; } err = netbuf_data(inbuf,...

Any plans on implementing that?