2020-10-30 02:50:53 +00:00
|
|
|
# awc (Actix Web Client)
|
2019-04-16 17:49:38 +00:00
|
|
|
|
2020-10-30 02:50:53 +00:00
|
|
|
> Async HTTP and WebSocket client library.
|
2019-04-16 17:49:38 +00:00
|
|
|
|
2020-10-30 02:50:53 +00:00
|
|
|
[![crates.io](https://img.shields.io/crates/v/awc?label=latest)](https://crates.io/crates/awc)
|
2023-02-26 03:34:47 +00:00
|
|
|
[![Documentation](https://docs.rs/awc/badge.svg?version=3.1.1)](https://docs.rs/awc/3.1.1)
|
2021-02-10 12:10:03 +00:00
|
|
|
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/awc)
|
2023-02-26 03:34:47 +00:00
|
|
|
[![Dependency Status](https://deps.rs/crate/awc/3.1.1/status.svg)](https://deps.rs/crate/awc/3.1.1)
|
2021-06-26 15:33:36 +00:00
|
|
|
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)
|
2019-04-16 17:49:38 +00:00
|
|
|
|
2020-10-30 02:50:53 +00:00
|
|
|
## Documentation & Resources
|
|
|
|
|
2020-11-25 00:07:56 +00:00
|
|
|
- [API Documentation](https://docs.rs/awc)
|
2022-02-18 03:41:10 +00:00
|
|
|
- [Example Project](https://github.com/actix/examples/tree/master/https-tls/awc-https)
|
2023-08-01 18:33:32 +00:00
|
|
|
- Minimum Supported Rust Version (MSRV): 1.68
|
2019-04-16 17:49:38 +00:00
|
|
|
|
|
|
|
## Example
|
2021-02-28 21:41:07 +00:00
|
|
|
|
2019-04-16 17:49:38 +00:00
|
|
|
```rust
|
|
|
|
use actix_rt::System;
|
|
|
|
use awc::Client;
|
|
|
|
|
|
|
|
fn main() {
|
2021-02-07 01:00:40 +00:00
|
|
|
System::new().block_on(async {
|
2020-11-04 22:20:01 +00:00
|
|
|
let client = Client::default();
|
|
|
|
|
|
|
|
let res = client
|
|
|
|
.get("http://www.rust-lang.org") // <- Create request builder
|
2021-03-15 10:59:42 +00:00
|
|
|
.insert_header(("User-Agent", "Actix-web"))
|
2020-11-04 22:20:01 +00:00
|
|
|
.send() // <- Send http request
|
|
|
|
.await;
|
|
|
|
|
|
|
|
println!("Response: {:?}", res); // <- server http response
|
|
|
|
});
|
2019-04-16 17:49:38 +00:00
|
|
|
}
|
|
|
|
```
|