// Read all the lines of the reply from server and print them to Serial
while (client.available()) {
String line = client.readStringUntil('\r');
//Serial.print(line); // Trying to avoid using serial
}
Serial Monitor is full of gibberish
Try changing your Baud Rate, see here:- http://www.esp8266.com/viewtopic.php?f=32&t=2664