Expand description
§rquest
An ergonomic all-in-one HTTP client for browser emulation with TLS, JA3/JA4, and HTTP/2 fingerprinting.
- Plain bodies, JSON, urlencoded, multipart bodies
- Header Order
- Cookies Store
- Redirect policy
- HTTP Proxies
- WebSocket Upgrade
- HTTPS via BoringSSL
- Perfectly Chrome, Safari, and Firefox
- Changelog
Additional learning resources include:
§Emulation
The emulation module provides a way to simulate various browser fingerprints.
use rquest::Client;
use rquest_util::Emulation;
#[tokio::main]
async fn main() -> Result<(), rquest::Error> {
// Build a client
let client = Client::builder()
.emulation(Emulation::Firefox135)
.build()?;
// Use the API you're already familiar with
let resp = client.get("https://tls.peet.ws/api/all").send().await?;
println!("{}", resp.text().await?);
Ok(())
}§Websocket
The websocket module provides a way to upgrade a connection to a websocket.
use futures_util::{SinkExt, StreamExt, TryStreamExt};
use rquest_util::Emulation;
use rquest::{Client, Message, Utf8Bytes};
#[tokio::main]
async fn main() -> Result<(), rquest::Error> {
// Build a client
let websocket = Client::builder()
.emulation(Emulation::Firefox135)
.build()?
.websocket("wss://echo.websocket.org")
.send()
.await?
.into_websocket()
.await?;
let (mut tx, mut rx) = websocket.split();
tokio::spawn(async move {
for i in 1..11 {
if let Err(err) = tx
.send(Message::Text(Utf8Bytes::from(format!(
"Hello, World! #{i}"
))))
.await
{
eprintln!("failed to send message: {err}");
}
}
});
while let Some(message) = rx.try_next().await? {
if let Message::Text(text) = message {
println!("received: {text}");
}
}
Ok(())
}§Making a GET request
For a single request, you can use the get shortcut method.
let body = rquest::get("https://www.rust-lang.org")
.await?
.text()
.await?;
println!("body = {:?}", body);NOTE: If you plan to perform multiple requests, it is best to create a
Client and reuse it, taking advantage of keep-alive connection
pooling.
§Making POST requests (or setting request bodies)
There are several ways you can set the body of a request. The basic one is
by using the body() method of a RequestBuilder. This lets you set the
exact raw bytes of what the body should be. It accepts various types,
including String and Vec<u8>. If you wish to pass a custom
type, you can use the rquest::Body constructors.
let client = rquest::Client::new();
let res = client.post("http://httpbin.org/post")
.body("the exact body that is sent")
.send()
.await?;§Forms
It’s very common to want to send form data in a request body. This can be done with any type that can be serialized into form data.
This can be an array of tuples, or a HashMap, or a custom type that
implements Serialize.
// This will POST a body of `foo=bar&baz=quux`
let params = [("foo", "bar"), ("baz", "quux")];
let client = rquest::Client::new();
let res = client.post("http://httpbin.org/post")
.form(¶ms)
.send()
.await?;§JSON
There is also a json method helper on the RequestBuilder that works in
a similar fashion the form method. It can take any value that can be
serialized into JSON. The feature json is required.
// This will POST a body of `{"lang":"rust","body":"json"}`
let mut map = HashMap::new();
map.insert("lang", "rust");
map.insert("body", "json");
let client = rquest::Client::new();
let res = client.post("http://httpbin.org/post")
.json(&map)
.send()
.await?;§Redirect Policies
By default, the client does not handle HTTP redirects.
To customize this behavior, you can use redirect::Policy with ClientBuilder.
§Cookies
The automatic storing and sending of session cookies can be enabled with
the cookie_store method on ClientBuilder.
§Proxies
NOTE: System proxies are enabled by default.
System proxies look in environment variables to set HTTP or HTTPS proxies.
HTTP_PROXY or http_proxy provide HTTP proxies for HTTP connections while
HTTPS_PROXY or https_proxy provide HTTPS proxies for HTTPS connections.
ALL_PROXY or all_proxy provide proxies for both HTTP and HTTPS connections.
If both the all proxy and HTTP or HTTPS proxy variables are set the more specific
HTTP or HTTPS proxies take precedence.
These can be overwritten by adding a Proxy to ClientBuilder
i.e. let proxy = rquest::Proxy::http("https://secure.example")?;
or disabled by calling ClientBuilder::no_proxy().
socks feature is required if you have configured socks proxy like this:
export https_proxy=socks5://127.0.0.1:1086http://is the scheme for http proxyhttps://is the scheme for https proxysocks4://is the scheme for socks4 proxysocks4a://is the scheme for socks4a proxysocks5://is the scheme for socks5 proxysocks5h://is the scheme for socks5h proxy
§TLS
By default, clients will utilize BoringSSL transport layer security to connect to HTTPS targets.
- Various parts of TLS can also be configured or even disabled on the
ClientBuilder.
§Optional Features
The following are a list of Cargo features that can be enabled or disabled:
- full: Enables all optional features.
- websocket: Provides websocket support.
- cookies: Provides cookie session support.
- cookies-abstract: Provides abstract cookie session support.
- gzip: Provides response body gzip decompression.
- brotli: Provides response body brotli decompression.
- zstd: Provides response body zstd decompression.
- deflate: Provides response body deflate decompression.
- json: Provides serialization and deserialization for JSON bodies.
- multipart: Provides functionality for multipart forms.
- stream: Adds support for
futures::Stream. - socks: Provides SOCKS5 proxy support.
- hickory-dns: Enables a hickory-dns async resolver instead of default
threadpool using
getaddrinfo. - native-roots: Use the native system root certificate store.
- webpki-roots: Use the webpki-roots crate for root certificates.
- apple-network-device-binding: Use the Apple Network Device Binding
- http2-tracing: Enable HTTP/2 tracing.
- internal_proxy_sys_no_cache: Use the internal proxy system with no cache.
Re-exports§
pub use hickory_resolver;
Modules§
- cookie
- HTTP Cookies
- dns
- DNS resolution
- header
- HTTP header types
- multipart
- multipart/form-data
- redirect
- Redirect Handling
Structs§
- Alpn
Protos - A TLS ALPN protocol.
- Alps
Protos - Application-layer protocol settings for HTTP/1.1 and HTTP/2.
- Body
- An asynchronous request body.
- Client
- An asynchronous
Clientto make Requests with. - Client
Builder - A
ClientBuildercan be used to create aClientwith custom configuration. - Client
Update - A mutable reference to a
ClientInner. - Close
Code - Status code used to indicate why an endpoint is closing the WebSocket connection.
- Close
Frame - A struct representing the close command.
- Dst
- Destination of the request.
- Emulation
Provider - HTTP connection context that manages both HTTP and TLS configurations.
- Error
- The Errors that may occur when processing a
Request. - Extension
Type - Extension types, to be used with
ClientHello::get_extension. - Http1
Builder - Http1 part of builder.
- Http1
Config - Configuration config for HTTP/1 connections.
- Http2
Builder - Http2 part of builder.
- Http2
Config - Configuration config for an HTTP/2 connection.
- Method
- The Request Method (VERB)
- NoProxy
- A configuration for filtering out requests that shouldn’t be proxied
- Priority
- Proxy
- Configuration of a proxy that a
Clientshould pass requests to. - Request
- A request which can be executed with
Client::execute(). - Request
Builder - A builder to construct the properties of a
Request. - Response
- A Response to a submitted
Request. - Root
Cert Store - A collection of certificates Store.
- Root
Cert Store Builder - A builder for constructing a
RootCertStore. - SslCurve
- A TLS Curve.
- Status
Code - An HTTP status code (
status-codein RFC 9110 et al.). - Stream
Dependency - Stream
Id - A stream identifier, as described in Section 5.1.1 of RFC 7540.
- TlsConfig
- Configuration settings for TLS connections.
- TlsInfo
- Hyper extension carrying extra TLS layer information.
Made available to clients on responses when
tls_infois set. - TlsVersion
- A TLS protocol version.
- Upgraded
- An upgraded HTTP connection.
- Url
- A parsed URL record.
- Utf8
Bytes - UTF-8 wrapper for Bytes.
- Version
- Represents a version of the HTTP spec.
- WebSocket
- A websocket connection
- WebSocket
Request Builder - Wrapper for
RequestBuilderthat performs the websocket handshake when sent. - WebSocket
Response - The server’s response to the websocket upgrade request.
Enums§
- Cert
Compression Algorithm - IANA assigned identifier of compression algorithm. See https://www.rfc-editor.org/rfc/rfc8879.html#name-compression-algorithms
- Message
- A WebSocket message.
- Pseudo
Order - Root
Cert Store Provider - The root certificate store.
- Settings
Order
Traits§
- Emulation
Provider Factory - Trait defining the interface for providing an
EmulationProvider. - IntoUrl
- A trait to try to convert some type into a
Url. - Response
Builder Ext - Extension trait for http::response::Builder objects
Functions§
Type Aliases§
- Result
- A
Resultalias where theErrcase isrquest::Error.