Rust
Rust
Example: Http.ClearHeaders method
Demonstrates how to call the ClearHeaders method.Also see: Chilkat Http Default and Auto-Filled Headers
Chilkat Rust Downloads
let http = chilkat::Http::new();
// Add a request header.
http.set_request_header("X-Something", "1234");
http.set_request_header("X-Example", "5678");
let mut response_body = http.quick_get_str("https://chilkatsoft.com/helloWorld.txt").unwrap_or_default();
// Examine the request header we just sent..
println!("{}", http.last_header());
println!("----");
// Output:
// GET /helloWorld.txt HTTP/1.1
// Host: chilkatsoft.com
// Accept: */*
// Accept-Encoding: gzip
// X-Something: 1234
// X-Example: 5678
// Remove the request headers we previously added:
http.clear_headers();
response_body = http.quick_get_str("https://chilkatsoft.com/helloWorld.txt").unwrap_or_default();
println!("{}", http.last_header());
// Output:
// GET /helloWorld.txt HTTP/1.1
// Host: chilkatsoft.com
// Accept: */*
// Accept-Encoding: gzip