1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-23 16:21:06 +01:00
actix-web/awc/examples/client.rs

30 lines
864 B
Rust
Raw Permalink Normal View History

2021-06-17 18:57:58 +02:00
use std::error::Error as StdError;
2019-01-29 05:41:09 +01:00
/// If we want to make requests to addresses starting with `https`, we need to enable the rustls feature of awc
/// `awc = { version = "3.5.0", features = ["rustls"] }`
#[actix_rt::main]
2021-06-17 18:57:58 +02:00
async fn main() -> Result<(), Box<dyn StdError>> {
2022-01-19 22:36:14 +01:00
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
2019-01-29 05:41:09 +01:00
2022-01-19 22:36:14 +01:00
// construct request builder
2019-11-26 12:16:33 +01:00
let client = awc::Client::new();
2019-11-20 18:33:22 +01:00
2022-01-19 22:36:14 +01:00
// configure request
2021-06-19 21:23:06 +02:00
let request = client
2019-11-26 12:16:33 +01:00
.get("https://www.rust-lang.org/")
2021-06-19 21:23:06 +02:00
.append_header(("User-Agent", "Actix-web"));
println!("Request: {:?}", request);
let mut response = request.send().await?;
2019-11-20 18:33:22 +01:00
2022-01-19 22:36:14 +01:00
// server response head
2019-11-26 12:16:33 +01:00
println!("Response: {:?}", response);
2019-11-20 18:33:22 +01:00
2019-11-26 12:16:33 +01:00
// read response body
let body = response.body().await?;
println!("Downloaded: {:?} bytes", body.len());
2019-01-29 05:41:09 +01:00
2019-11-26 12:16:33 +01:00
Ok(())
2019-01-29 05:41:09 +01:00
}