So you're a Noob? Post your questions here until you graduate! Don't be shy.

User avatar
By buzzy
#66426 I am trying to use the library ESPAsyncWebServer to read a raw JSON request from a PUT.
How do I access the raw request?

server.on("/test", HTTP_PUT, [](AsyncWebServerRequest *request)
{
Serial.println(request.?????);

request->send(200, "application/json", "ok");
});