mirror of
https://github.com/actix/actix-web.git
synced 2024-11-10 19:01:05 +00:00
29 lines
864 B
Rust
29 lines
864 B
Rust
use std::error::Error as StdError;
|
|
|
|
/// 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]
|
|
async fn main() -> Result<(), Box<dyn StdError>> {
|
|
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
|
|
|
|
// construct request builder
|
|
let client = awc::Client::new();
|
|
|
|
// configure request
|
|
let request = client
|
|
.get("https://www.rust-lang.org/")
|
|
.append_header(("User-Agent", "Actix-web"));
|
|
|
|
println!("Request: {:?}", request);
|
|
|
|
let mut response = request.send().await?;
|
|
|
|
// server response head
|
|
println!("Response: {:?}", response);
|
|
|
|
// read response body
|
|
let body = response.body().await?;
|
|
println!("Downloaded: {:?} bytes", body.len());
|
|
|
|
Ok(())
|
|
}
|