2019-03-26 12:31:51 -07:00
|
|
|
use actix_http::Error;
|
2019-01-28 20:41:09 -08:00
|
|
|
|
2019-11-26 17:16:33 +06:00
|
|
|
#[actix_rt::main]
|
|
|
|
async fn main() -> Result<(), Error> {
|
2019-01-28 20:41:09 -08:00
|
|
|
std::env::set_var("RUST_LOG", "actix_http=trace");
|
|
|
|
env_logger::init();
|
|
|
|
|
2019-11-26 17:16:33 +06:00
|
|
|
let client = awc::Client::new();
|
2019-11-20 23:33:22 +06:00
|
|
|
|
2019-11-26 17:16:33 +06: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 23:33:22 +06:00
|
|
|
|
2019-11-26 17:16:33 +06:00
|
|
|
// server http response
|
|
|
|
println!("Response: {:?}", response);
|
2019-11-20 23:33:22 +06:00
|
|
|
|
2019-11-26 17:16:33 +06:00
|
|
|
// read response body
|
|
|
|
let body = response.body().await?;
|
|
|
|
println!("Downloaded: {:?} bytes", body.len());
|
2019-01-28 20:41:09 -08:00
|
|
|
|
2019-11-26 17:16:33 +06:00
|
|
|
Ok(())
|
2019-01-28 20:41:09 -08:00
|
|
|
}
|