// String payload = http.getString();
WiFiClient * stream = http.getStreamPtr();
String payload = "";
while (stream->available()) {
char c = stream->read();
payload += c;
}
Search found 1 match
- Thu Dec 14, 2023 3:02 am
- Forum: ESP32 Arduino
- Topic: http.getString(); Fails with a very large JSON string. Can we get this working?
- Replies: 2
- Views: 35767