reqwest
reqwest copied to clipboard
An easy and powerful Rust HTTP Client
#1558 - [x] Add small pool of HTTP/3 connections. - [x] Using (`Rustls`) TLS config for setting up connection. - [x] Use the `SendRequest` to start sending a request. -...
We love reqwest, but we also need to use websocket. :-) Warp implements it at server-side, so it would be nice if reqwest could implement it at client-side allowing we...
Hi, In a project I am only interested in two errors. 1. unexpected EOF during the initial TLS connection setup(with rustls backend) 2. (when using openssl backend) Error code 5?...
The following issue seems to only be reproducable in WSL 2 (Ubuntu 20.04). Rust version: 1.63.0 **cargo.toml** ```toml [dependencies] reqwest = { version = "0.11", features = ["json"] } tokio...
Just like adding `-C -` command in `curl`
```toml [target.'cfg(target_arch = "wasm32")'.dependencies] reqwest = { version ="0.11", default-features = false, features = ["rustls-tls", "json"] } tokio = { version = "1.0", default-features = false, features = ["net", "time"]...
A lot of APIs have rate limits, and manually implementing a rate limiter over and over again is quite annoying to me. There was some previous discussion in #169 but...
Hi, I like `reqwest` quite a lot, however there is often one significant pain point for me: If I read the response body (e.g. via `json` or `text`), the `Response`...
Hi, This PR allows a custom `Policy` to include sensitive headers when redirecting a request. This change is backwards compatible as the default behavior is still to remove all sensitive...