tayfunulu / WiFiManager

WiFi manager for ESP8266 - ESP12 - ESP32 - micropython
MIT License
345 stars 104 forks source link

Post Message Buffer Too Short: Password not fully recovered #28

Open MartGro opened 3 years ago

MartGro commented 3 years ago

Hi, in my case, the ESP8266 was unable to connect to an WiFi, because only the first half of the password got extracted from the POST message. Changing request += client.recv(512) to request += client.recv(1024) solved the issue.