Rust
Rust
Send a REST Request with a Text Body
See more REST Examples
Demonstrates Rest.FullRequestString, a convenience method that sends a complete request whose text body (such as JSON, XML, or plain text) is supplied directly, then reads and returns the response body as text.
Background. The full-request convenience methods perform the entire request/response exchange in a single call. FullRequestString is well suited to typical JSON or XML API calls where the body fits comfortably in a string.
Chilkat Rust Downloads
let rest = chilkat::Rest::new();
let b_tls = true;
let b_auto_reconnect = true;
if rest.connect("example.com", 443, b_tls, b_auto_reconnect).is_err() {
println!("{}", rest.last_error_text());
return;
}
// Send a complete request whose text body is supplied directly, such as JSON. The response body is
// read as text and returned. The 1st argument is the HTTP verb, the 2nd is the URI path, and the
// 3rd is the request body.
let _ = rest.add_header("Content-Type", "application/json");
let json_body = "{ \"name\": \"example\", \"active\": true }".to_string();
let Ok(response_text) = rest.full_request_string("POST", "/api/items", &json_body) else {
println!("{}", rest.last_error_text());
return;
};
println!("{}", response_text);