ESP8266 sending GET Request and getting 408 Timeout error

I am usin ESP8266 to send a GET Request Then I am getting 408 Timeout error.

https://drive.google.com/file/d/0B7DJTJS6sETTTEw2a2hWLTRXTmc/view?usp=sharing

se_fore_jj:
I am usin ESP8266 to send a GET Request Then I am getting 408 Timeout error.

https://drive.google.com/file/d/0B7DJTJS6sETTTEw2a2hWLTRXTmc/view?usp=sharing

There is not reason to start yet another topic, when you already have the other one. Connect ESP8266 to Arduino Uno - #9 by se_fore_jj - Networking, Protocols, and Devices - Arduino Forum

Sorry about that. Should I close this topic and move to the other one?
Thanks.

hace algun tiempo hice un proyecto sobre xmpp en arduino donde se autentificaba el usuario y enviaba valores del clima y los guardaba en una base de datos entonces usamos los REST(get,set) asi:
Nota: pero usamos el modulo wifi DHT22

void esp_8266(){
// TCP connection
String cmd = "AT+CIPSTART="TCP","";
cmd += "192.168.43.112";
cmd += "",3000";
ser.println(cmd);
if(ser.find("Error")){
Serial.println("AT+CIPSTART error");
return;
}
String luz=String(analogRead(A0));
temperaturaHumedad();
// prepare GET string
String getStr = "GET /saveData?temperatura=";