Search found 2 matches

by apoyoman
Thu Jun 29, 2017 3:54 pm
Forum: ESP32 Arduino
Topic: httpclient post method
Replies: 2
Views: 11904

Re: httpclient post method

Thanks. That is right, in order to be a proper json string the "\"name\"" must be quoted as you so did. The other problem was the structure of the FieldStorage arriving at the server. Since we sent it a key value pair, it seems like f = cgi.FieldStorage() should contain the key-value pairs we want. ...
by apoyoman
Sun Jun 25, 2017 5:02 pm
Forum: ESP32 Arduino
Topic: httpclient post method
Replies: 2
Views: 11904

httpclient post method

Hi Everybody, We are trying to push some data from the esp32 to the cloud using the httpclient post method without success. What we see on the server side is that parts of the http header gets filled (user agent and IP address), but the json data package arrives empty (cgi FieldStorage empty). I tes...