Rust Requires Chilkat v11.0.0+
Rust
Load JSON Object from HTTP Response Body
Demonstrates how to load the HTTP response body directly into a JSON object.Chilkat Rust Downloads
let http = chilkat::Http::new();
let resp = chilkat::HttpResponse::new();
if http.http_str("GET", "https://www.chilkatsoft.com/exampledata/sample.json", "", "", "", &resp).is_err() {
println!("{}", http.last_error_text());
return;
}
// A JSON object is JSON that begins with "{" and ends with "}"
let json = chilkat::JsonObject::new();
// If we wish to transfer (instead of copy) the JSON from the HttpResponse to the JsonObject, then add the keyword "TakeResponseBody" to UncommonOptions
// This could save memory for extremely large JSON responses.
resp.set_uncommon_options("TakeResponseBody");
let _ = resp.get_body_json(&json);
json.set_emit_compact(false);
println!("{}", json.emit().unwrap_or_default());
// Note: If UncommonOptions contained "TakeResponseBody", then the response BodyStr will now be empty:
println!("----");
println!("{}", resp.body_str());