Search found 1 match

by donkihot
Thu Sep 09, 2021 3:09 am
Forum: General Discussion and Questions
Topic: Reading body from POST request on ESP8266
Replies: 0
Views: 1547

Reading body from POST request on ESP8266

I originally found this thread: https://forum.micropython.org/viewtopic.php?t=2793 and followed the idea described there. However for it doesn't work for me. Here is a code I wrote: server = self.__httpServer server.listen(0) while self.__runServer: request, _ = server.accept() headers = request.rec...