gdsports wrote:Very cool!
Working after one change. I was getting 444 response code.Code: Select allclient.print("Content-Length: ");
client.println(data.length());
client.println();
client.println(data);
ChangeCode: Select alltoclient.println(data)
Code: Select allprintln adds end of line characters so the extra chars throws off the content length.client.print(data)
I gave that a try and still no go.