Chat freely about anything...

User avatar
By br0kenpixel
#87292 Hi, I'm trying to send a GET request using my ESP8266 with AT v1.1 firmware.

I'm using the following commands:

(WiFi is already configured and is working)
Code: Select allAT+CIPSTART="TCP","myserver.com",80
AT+CIPSEND=79
GET / HTTP/1.1\r\nHost: myserver.com\r\nAccept: */*\r\nUser-Agent: test\r\n\r\n


The issue is that I always get 404 Bad Request error.
I tried removing the Accept and User-Agent variables, but that still does not fix it.
Could someone help me?