Layer: L6 Presentation ยท Build flags: PC_ENABLE_AUTH (on by default)
What this example teaches
The library protects a route with credentials via an auth-aware on() overload: you pass a realm, username, and password after the handler, and the handler runs only if the credentials check passes. Otherwise the server answers 401 with a WWW-Authenticate challenge automatically - you write no auth code.
Protecting one route. A public route uses the normal three-argument on(); a protected route adds the realm/user/password (digest defaults to false, i.e. Basic):
[](uint8_t
id,
HttpReq *) { server.send(
id, 200,
"text/plain",
"authenticated!"); },
"Restricted", "admin", "s3cret");
@ HTTP_GET
Safe, idempotent read.
Fully-parsed HTTP/1.1 request.
The handler body is reached only after a valid Authorization: Basic header.
Basic is base64, not encryption. The credentials are merely base64-encoded on the wire, so use Basic only over HTTPS or an SSH tunnel on untrusted networks. For a scheme where the password never crosses the wire, pass digest=true - see DigestAuth.
PC_ENABLE_AUTH is on by default; you only need to set it (to 0) to compile auth out.
Build and run
pio ci --board=esp32dev --project-option="framework=arduino" \
--lib="." examples/L6-Presentation/BasicAuth/BasicAuth.ino
curl http://<ip>/ # public
curl -u admin:s3cret http://<ip>/secret # 200; without -u you get a 401 challenge
Annotated source
The complete sketch (BasicAuth.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));
"Restricted", "admin", "s3cret");
}
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.
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.