Simple HTTP GET and POST with ESP8266.

Dependencies:   ESP8266Interface HTTPClient-SSL WebSocketClient mbed-rtos mbed

Fork of ESP8266_HTTP_HelloWorld by ESP8266

Revision:
17:59097e8b5c60
Parent:
16:e3d152c9f6e0
Child:
18:3209e51b731a
--- a/main.cpp	Mon Jun 08 17:48:22 2015 +0000
+++ b/main.cpp	Tue Jun 09 16:31:03 2015 +0000
@@ -5,7 +5,7 @@
 #include "TCPSocketServer.h"
 #include "Websocket.h"
 
-ESP8266Interface wifi(D1,D0,D2,"demossid","",115200); // TX,RX,Reset,SSID,Password,Baud
+ESP8266Interface wifi(D1,D0,D2,"demossid","password",115200); // TX,RX,Reset,SSID,Password,Baud
 RawSerial pc(USBTX, USBRX); // tx, rx
 HTTPClient http;
 char str[512];
@@ -17,7 +17,7 @@
     
     //GET
     pc.printf("\nTrying to fetch page using GET...\n\r");
-    int ret = http.get("http://191.239.57.70/", str, 128);//IP address is mbed.org
+    int ret = http.get("http://54.175.222.246/get", str, 512);//IP address is httpbin.org/get
     if (!ret) {
         pc.printf("Page fetched successfully - read %d characters\n\r", strlen(str));
         pc.printf("Result: %s\n\r", str);