reqwest icon indicating copy to clipboard operation
reqwest copied to clipboard

An easy and powerful Rust HTTP Client

Results 302 reqwest issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** I'm trying to build a tracing backend that ships logs via HTTPS requests. I want to disable logging for this...

In which I add two methods, guarded by a new "unstable-tls-config" feature flag, to add compile-time guarantees that a compatible tls configuration is provided: ```rust impl ClientConfig { #[cfg(all(feature =...

It would be nice to have way to check if it is dns error: ``` reqwest::Error { kind: Request, url: Url { scheme: "http", username: "", password: None, host: Some(Domain("bugaga.com")),...

When trying to pass a relative URL to any of the functions like `.get`, it errors with `RelativeUrlWithoutBase`. From my understanding, this is triggered by the `url` crate because `Url::parse`...

*Original title: Provide conversion functions for reqwest::{Request, Response} to http::{Request, Response}* The reverse already exist as one `From` (response) and one `TryFrom` (request) trait implementation, but going from reqwest types...

E-easy
E-pr-welcome

Getting the `content_length` of a HEAD `Response`always returns `Some(0)` after updating to [0.10.4](https://github.com/seanmonstar/reqwest/releases/tag/v0.10.4). I am performing a simple HEAD request using the async client and I can see the header...

This provides a way to handle the parsing error up the call stack instead of panicking. See #668. This change should not impact the public API as `Pending` still gets...

the reqwest report errors when add the following headers: ``` :method: GET :scheme: https :authority: raw.githubusercontent.com :path: txtx ``` the code to test: ```rust let mut h = header::HeaderMap::new(); h.insert(":authority",...

When trying to download content from garagehq.deuxfleurs.fr I get the following error when reading the request body: > Error downloading feed: error decoding response body: deflate decompression error reqwest version:...