Layer: L7 Application ยท Build flags: none (core features only)
What this example teaches
If a web app served from another origin needs to call this device's JSON API from the browser, the device must send CORS headers. set_cors(origin) builds the Access-Control-Allow-* block once and injects it into every response - and answers the CORS preflight OPTIONS request automatically.
One call enables it. Configure the policy at setup; every handler's response then carries the headers, and preflights are handled for you:
server.set_cors("*");
@ HTTP_GET
Safe, idempotent read.
Fully-parsed HTTP/1.1 request.
The header block is built once into CORS_HDR_BUF_SIZE and reused, so there is no per-request cost. Use a specific origin in production rather than *.
Build and run
pio ci --board=esp32dev --project-option="framework=arduino" \
--lib="." examples/L7-Application/CORS/CORS.ino
From a page on another origin: ‘fetch('http://<ip>/api’).then(r=>r.json()).then(console.log)`.
Annotated source
The complete sketch (CORS.ino), reproduced verbatim with added explanatory comments:
static const char *SSID = "YOUR_SSID";
static const char *PASSWORD = "YOUR_PASSWORD";
void setup()
{
Serial.print("Connecting to WiFi");
{
delay(250);
Serial.print('.');
}
Serial.printf("IP: %u.%u.%u.%u\n", (unsigned)(ip & 0xFF), (unsigned)((ip >> 8) & 0xFF),
(unsigned)((ip >> 16) & 0xFF), (unsigned)((ip >> 24) & 0xFF));
[](uint8_t
id,
HttpReq *) { server.
send(
id, 200,
"application/json",
"{\"ok\":true}"); });
}
void loop()
{
}
Single-port HTTP server with deterministic, zero-allocation execution.
void send(uint8_t slot_id, int code, const char *content_type, const char *payload)
Send an HTTP response with a body and close the connection.
int32_t begin(const WebServerConfig *cfg=nullptr)
Initialize all connection slots and open all registered listeners.
void on(const char *path, HttpMethod method, Handler callback)
Register a route handler.
void handle()
Drive the server - call every Arduino loop() iteration.
void set_cors(const char *origin)
Enable CORS by pre-building the Access-Control headers.
bool init_wifi_physical(const char *, const char *)
Connect to a WiFi access point.
uint32_t pc_net_egress_ip(void)
IPv4 (network byte order) of the current egress interface, or 0 if none.
bool wifi_ready()
True if the WiFi station link is up (associated + an IP is assigned).
Layer 1 (Physical) - link bring-up and live egress-interface reporting.
Layer 7 (Application) - public HTTP routing API.