Hey,
I need a little help because I'll be honest, I have no idea what I'm doing wrong....
I want to send data to my local data server using AT commands - while data to the ThingSpeak server "flies" correctly and without any problem, nothing reaches my server
.
I do everything in the terminal where I have the ESP-01 connected to my computer using a USB-TTL converter
When I send data to ThingSpeak I "paste in sequence:
AT+CIPSTART="TCP","184.106.153.149",80
AT+CIPSEND=47
GET /update?api_key=ABCNQOZDP55FYABC&field1=1
.
and the data goes to the server, so everything is as it should be and without error.
Now I want to send the data to my server I "paste" it in sequence:
AT+CIPSTART="TCP","192.168.1.2",80
AT+CIPSEND=71
GET /receiver.php?key=1234&id=1&type=temp&value=22&device=ip&name=ABC
.
and so everything "hangs" until 180 seconds pass (default connection time) or I use AT+CIPCLOSE
This way the data does not reach my server, but what is interesting is when I paste the command into the browser window:
.
It all works as expected, everything is correctly executed, the data appears on my server.
Thank you in advance for your help
.
I need a little help because I'll be honest, I have no idea what I'm doing wrong....
I want to send data to my local data server using AT commands - while data to the ThingSpeak server "flies" correctly and without any problem, nothing reaches my server

I do everything in the terminal where I have the ESP-01 connected to my computer using a USB-TTL converter
When I send data to ThingSpeak I "paste in sequence:
AT+CIPSTART="TCP","184.106.153.149",80
AT+CIPSEND=47
GET /update?api_key=ABCNQOZDP55FYABC&field1=1
Code: Text
and the data goes to the server, so everything is as it should be and without error.
Now I want to send the data to my server I "paste" it in sequence:
AT+CIPSTART="TCP","192.168.1.2",80
AT+CIPSEND=71
GET /receiver.php?key=1234&id=1&type=temp&value=22&device=ip&name=ABC
Code: Text
and so everything "hangs" until 180 seconds pass (default connection time) or I use AT+CIPCLOSE
This way the data does not reach my server, but what is interesting is when I paste the command into the browser window:
Code: Text
It all works as expected, everything is correctly executed, the data appears on my server.
Thank you in advance for your help
