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

26 lines
610 B
Rust
Raw Normal View History

2019-03-26 20:31:51 +01:00
use actix_http::Error;
2019-01-29 05:41:09 +01:00
2020-06-18 16:45:30 +02:00
#[actix_web::main]
2019-11-26 12:16:33 +01:00
async fn main() -> Result<(), Error> {
2019-01-29 05:41:09 +01:00
std::env::set_var("RUST_LOG", "actix_http=trace");
env_logger::init();
2019-11-26 12:16:33 +01:00
let client = awc::Client::new();
2019-11-20 18:33:22 +01:00
2019-11-26 12:16:33 +01:00
// Create request builder, configure request and send
let mut response = client
.get("https://www.rust-lang.org/")
.header("User-Agent", "Actix-web")
.send()
.await?;
2019-11-20 18:33:22 +01:00
2019-11-26 12:16:33 +01:00
// server http response
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
}