reqwest-middleware icon indicating copy to clipboard operation
reqwest-middleware copied to clipboard

Wrapper around reqwest to allow for client middleware chains.

Results 34 reqwest-middleware issues
Sort by recently updated
recently updated
newest added

Fixed the example in the `README.md`, I made an (somewhat) educated guess on how to wire up stdout, but the output didn't match the original output at all so maybe...

Note that https://github.com/open-telemetry/opentelemetry-rust/pull/2040 removed custom `writer` support from `opentelemetry-stdout`, so I didn't add that to the tests. Not sure what its purpose is since it only uses `std::io::sink()` anyways?

Hi Team, I was trying to cross compiling it on my macOS to aarch-linux-android, all linkers are correctly chosen (I tested for several other Rust programs) but failed with the...

bug

I want to impl a middleware that can log request and response body ```rust #[async_trait] impl Middleware for LoggingMiddlware { async fn handle( &self, req: Request, extensions: &mut Extensions, next:...

enhancement

> *ring* is unmaintained | Details | | | ------------------- | ---------------------------------------------- | | Status | unmaintained | | Package | `ring` | | Version | `0.17.10` | | URL...

## Bug description Github tags are missing for reqwest-retry 0.3.0 and 0.4.0 See https://github.com/TrueLayer/reqwest-middleware/tags?after=reqwest-middleware-v0.3.2

bug

This is an action taken to address #203. I was adding this library to some of our internal projects when I found myself in the same need and decided to...

## Bug description As of rust 1.84.0, rustc will warn that the feature deprecated_attributes is not in the library users `Cargo.toml`. ``` warning: unexpected `cfg` condition value: `deprecated_attributes` --> src/external_api_client/mod.rs:291:20...

bug

## Motivations We were investigating flakiness with Cloudflare requests that already had a generous retry limit, but were flagged as Fatal by the default policy. As it turns out, one...

enhancement

## Motivations I'm using some functions from outside of our project that require `&reqwest::Client` as an argument, but we're using middleware via `ClientWithMiddleware`, and there's no way to access the...

enhancement