Sample code for 30+ languages & platforms
Rust Requires Chilkat v11.0.0+

Load JSON Array from HTTP Response Body

Demonstrates how to load the HTTP response body directly into a JsonArray.

Chilkat Rust Downloads

Rust

let http = chilkat::Http::new();

let resp = chilkat::HttpResponse::new();
if http.http_str("GET", "https://www.chilkatsoft.com/exampledata/sampleArray.json", "", "", "", &resp).is_err() {
    println!("{}", http.last_error_text());
    return;
}

// A JSON array is JSON that begins with "[" and ends with "]"
let jarr = chilkat::JsonArray::new();

// If we wish to transfer (instead of copy) the JSON from the HttpResponse to the JsonArray, 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_jarr(&jarr);

println!("{}", jarr.emit().unwrap_or_default());

// Note: If UncommonOptions contained "TakeResponseBody", then the response BodyStr will now be empty:
println!("----");
println!("{}", resp.body_str());