The use of the ESP8266 in the world of IoT

User avatar
By Burak Günay
#11582 Hello ,
I'm in trouble with the Pushingbox service . When I test the push notifications via browser they seem working and I get push notifications , but when it comes to send the commands via ESP8266 I can not get any notifications ...

When I copy paste this to my browser I get the push notifications ...
Code: Select allhttp://api.pushingbox.com/pushingbox?devid=<device ID>


I know things are different for ESP so I send some commmands just like the ones below ..

Code: Select all
AT+CIPSTART=4,"TCP","api.pushingbox.com",80
AT+CIPSEND=4,105
GET /pushingbox?devid=<device ID> HTTP/1.1\r\nHost: api.pushingbox.com\r\nUser-Agent: BURAK\r\n\r\n



But the only response I get is

"SEND OK" and "<channel>,CLOSED"

Where do I make mistake ?

By the way I'm using a CP2102 uart bridge to communicate with ESP8266 with a terminal program called SSCOM32e

Thank you all for your responses ..