Back to Actix Web

`awc` (Actix Web Client)

awc/README.md

0.7.191.2 KB
Original Source

awc (Actix Web Client)

Async HTTP and WebSocket client library.

<!-- prettier-ignore-start -->

<!-- prettier-ignore-end -->

Examples

Example project using TLS-enabled client →

Basic usage:

rust
use actix_rt::System;
use awc::Client;

fn main() {
    System::new().block_on(async {
        let client = Client::default();

        let res = client
            .get("http://www.rust-lang.org")    // <- Create request builder
            .insert_header(("User-Agent", "Actix-web"))
            .send()                             // <- Send http request
            .await;

        println!("Response: {:?}", res);        // <- server http response
    });
}