2024-01-10 05:00:20 +01:00
|
|
|
# `awc` (Actix Web Client)
|
2019-04-16 19:49:38 +02:00
|
|
|
|
2020-10-30 03:50:53 +01:00
|
|
|
> Async HTTP and WebSocket client library.
|
2019-04-16 19:49:38 +02:00
|
|
|
|
2024-01-10 05:00:20 +01:00
|
|
|
<!-- prettier-ignore-start -->
|
|
|
|
|
2020-10-30 03:50:53 +01:00
|
|
|
[![crates.io](https://img.shields.io/crates/v/awc?label=latest)](https://crates.io/crates/awc)
|
2024-08-10 05:08:38 +02:00
|
|
|
[![Documentation](https://docs.rs/awc/badge.svg?version=3.5.1)](https://docs.rs/awc/3.5.1)
|
2021-02-10 13:10:03 +01:00
|
|
|
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/awc)
|
2024-08-10 05:08:38 +02:00
|
|
|
[![Dependency Status](https://deps.rs/crate/awc/3.5.1/status.svg)](https://deps.rs/crate/awc/3.5.1)
|
2021-06-26 17:33:36 +02:00
|
|
|
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)
|
2019-04-16 19:49:38 +02:00
|
|
|
|
2024-01-10 05:00:20 +01:00
|
|
|
<!-- prettier-ignore-end -->
|
|
|
|
|
2024-02-07 04:47:30 +01:00
|
|
|
## Examples
|
2020-10-30 03:50:53 +01:00
|
|
|
|
2024-02-07 04:47:30 +01:00
|
|
|
[Example project using TLS-enabled client →](https://github.com/actix/examples/tree/master/https-tls/awc-https)
|
2019-04-16 19:49:38 +02:00
|
|
|
|
2024-02-07 04:47:30 +01:00
|
|
|
Basic usage:
|
2021-02-28 22:41:07 +01:00
|
|
|
|
2019-04-16 19:49:38 +02:00
|
|
|
```rust
|
|
|
|
use actix_rt::System;
|
|
|
|
use awc::Client;
|
|
|
|
|
|
|
|
fn main() {
|
2021-02-07 02:00:40 +01:00
|
|
|
System::new().block_on(async {
|
2020-11-04 23:20:01 +01:00
|
|
|
let client = Client::default();
|
|
|
|
|
|
|
|
let res = client
|
|
|
|
.get("http://www.rust-lang.org") // <- Create request builder
|
2021-03-15 11:59:42 +01:00
|
|
|
.insert_header(("User-Agent", "Actix-web"))
|
2020-11-04 23:20:01 +01:00
|
|
|
.send() // <- Send http request
|
|
|
|
.await;
|
|
|
|
|
|
|
|
println!("Response: {:?}", res); // <- server http response
|
|
|
|
});
|
2019-04-16 19:49:38 +02:00
|
|
|
}
|
|
|
|
```
|