3 releases
0.1.2 | Jan 6, 2024 |
---|---|
0.1.1 | Aug 7, 2022 |
0.1.0 | Aug 7, 2022 |
#513 in HTTP client
103 downloads per month
Used in gha-toolkit
9KB
112 lines
reqwest-retry-after
reqwest-retry-after
is a library that adds support for the Retry-After
header in reqwest, using reqwest_middleware.
Usage
Simply pass RetryAfterMiddleware
to the ClientWithMiddleware
builder.
use reqwest_middleware::{ClientBuilder, ClientWithMiddleware};
use reqwest_retry_after::RetryAfterMiddleware;
let client = ClientBuilder::new(reqwest::Client::new())
.with(RetryAfterMiddleware::new())
.build();
lib.rs
:
reqwest-retry-after
reqwest-retry-after
is a library that adds support for the Retry-After
header
in reqwest
, using reqwest_middleware
.
Usage
Simply pass RetryAfterMiddleware
to the ClientWithMiddleware
builder.
use reqwest_middleware::{ClientBuilder, ClientWithMiddleware};
use reqwest_retry_after::RetryAfterMiddleware;
let client = ClientBuilder::new(reqwest::Client::new())
.with(RetryAfterMiddleware::new())
.build();
Notes
A client constructed with RetryAfterMiddleware
will apply the Retry-After
header
to all future requests, regardless of domain or URL. This means that if you query one URL
which sets a Retry-After
, and then query a different URL that has no ratelimiting,
the Retry-After
will be applied to the new URL.
If you need this functionality, consider creating a seperate client for each endpoint.
Dependencies
~7–18MB
~256K SLoC