Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: MbedJSONValue mbed-http HTS221
Diff: source/main-http.cpp
- Revision:
- 14:3c173847e681
- Parent:
- 7:5d32909f77de
- Child:
- 15:65a49b573ba5
--- a/source/main-http.cpp Thu Mar 30 12:54:34 2017 +0200 +++ b/source/main-http.cpp Thu Mar 30 15:15:47 2017 +0200 @@ -29,10 +29,10 @@ // Do a GET request to httpbin.org { + // By default the body is automatically parsed and stored in a buffer, this is memory heavy. + // To receive chunked response, pass in a callback as last parameter to the constructor. HttpRequest* get_req = new HttpRequest(network, HTTP_GET, "http://httpbin.org/status/418"); - // By default the body is automatically parsed and stored in a string, this is memory heavy. - // To receive chunked response, pass in a callback as third parameter to 'send'. HttpResponse* get_res = get_req->send(); if (!get_res) { printf("HttpRequest failed (error code %d)\n", get_req->get_error());