From 27a555b99a370e7f05a4d0433a231180c71f7b4a Mon Sep 17 00:00:00 2001 From: dh1tw Date: Wed, 30 Dec 2015 17:12:50 +0100 Subject: [PATCH] updated URL in example to new mbed domain --- examples/mbed/mbed-http-client/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mbed/mbed-http-client/src/main.cpp b/examples/mbed/mbed-http-client/src/main.cpp index 2e69c69a..654ee36b 100644 --- a/examples/mbed/mbed-http-client/src/main.cpp +++ b/examples/mbed/mbed-http-client/src/main.cpp @@ -14,7 +14,7 @@ int main() //GET data printf("\nTrying to fetch page...\n"); - int ret = http.get("http://mbed.org/media/uploads/donatien/hello.txt", str, 128); + int ret = http.get("https://developer.mbed.org/media/uploads/donatien/hello.txt", str, 128); if (!ret) { printf("Page fetched successfully - read %d characters\n", strlen(str));