Using the new Arduino IDE for ESP8266 and found bugs, report them here

Moderator: igrr

User avatar
By MrSupe
#36674 How many bytes I can send/receive with post method using ESP8266WebServer?
I am using Arduino 1.6.5 environment; 2.0.0 ESP8266 library.
User avatar
By martinayotte
#36676 The chunk size buffering is 1460 bytes, but this is all managed under the hood. You can still send a huge data stream, it will chunk it into those smaller packet. For example, if you have an JPEG image stored in the Flash as a PROGMEM constant from your sketch and send it using send_P() function, it can be 64K or even more, depending of the size of the Flash. There are also streamFile() function to stream from SDCard or SPIFFS files. For receiving, there is no much limit there too, except that you need to store the data received somewhere, again probably to SDCard or SPIFFS too.
User avatar
By MrSupe
#36677 I am sending/receiving configuration data for my project (flashed}. It counts 320 variables.
Names of vars are short (e.g. a1-a320). All are 16bites integers.
Not all is writen, depends on how many chars are transmited.