1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-09 05:08:32 +00:00
actix-web/awc/examples/client.rs

28 lines
717 B
Rust
Raw Normal View History

2021-06-17 16:57:58 +00:00
use std::error::Error as StdError;
2019-01-29 04:41:09 +00:00
2020-06-18 14:45:30 +00:00
#[actix_web::main]
2021-06-17 16:57:58 +00:00
async fn main() -> Result<(), Box<dyn StdError>> {
2021-06-19 19:23:06 +00:00
std::env::set_var("RUST_LOG", "client=trace,awc=trace,actix_http=trace");
2019-01-29 04:41:09 +00:00
env_logger::init();
2019-11-26 11:16:33 +00:00
let client = awc::Client::new();
2019-11-20 17:33:22 +00:00
2019-11-26 11:16:33 +00:00
// Create request builder, configure request and send
2021-06-19 19:23:06 +00:00
let request = client
2019-11-26 11:16:33 +00:00
.get("https://www.rust-lang.org/")
2021-06-19 19:23:06 +00:00
.append_header(("User-Agent", "Actix-web"));
println!("Request: {:?}", request);
let mut response = request.send().await?;
2019-11-20 17:33:22 +00:00
2019-11-26 11:16:33 +00:00
// server http response
println!("Response: {:?}", response);
2019-11-20 17:33:22 +00:00
2019-11-26 11:16:33 +00:00
// read response body
let body = response.body().await?;
println!("Downloaded: {:?} bytes", body.len());
2019-01-29 04:41:09 +00:00
2019-11-26 11:16:33 +00:00
Ok(())
2019-01-29 04:41:09 +00:00
}