hi guys,
i have problems while using POST to send data to Easyiot cloud.
In the examples given by Easyiot website, it connects to wifi network, then:
// Set up TCP connection.
String cmd = "AT+CIPSTART=\"TCP\",\"";
cmd += EIOT_CLOUD_ADDRESS;
cmd += "\",40404";
esp8266.println(cmd);
Since this code is not working for me, i would like ot ask if AT+CIPSEND=xxx is needed before POST.
I didnt find it in code provided by Easyiot website.
Thanks for helping me.
Ciao
mamic2 wrote: hi guys,
i have problems while using POST to send data to Easyiot cloud.
In the examples given by Easyiot website, it connects to wifi network, then:
// Set up TCP connection.
String cmd = "AT+CIPSTART=\"TCP\",\"";
cmd += EIOT_CLOUD_ADDRESS;
cmd += "\",40404";
esp8266.println(cmd);
Since this code is not working for me, i would like ot ask if AT+CIPSEND=xxx is needed before POST.
I didnt find it in code provided by Easyiot website.
Thanks for helping me.
Ciao
Thanks for the advice, but unfortunately im not able to solve my problem this way. I dont run my project on esp8266 but on arduino nano connected to esp8266 and the REST API V1 includes esp8266wifi.h and it doest work on nano.
Can you please advice how to send values to easyiot cloud using nano+esp8266? thanks
i did a further step reading new library code but still no able to send data:
can somebody help? if i do same post request with http request software it works!