Struct ureq::Response[][src]

pub struct Response { /* fields omitted */ }
Expand description

Response instances are created as results of firing off requests.

The Response is used to read response headers and decide what to do with the body. Note that the socket connection is open and the body not read until one of into_reader(), into_json(), or into_string() consumes the response.

When dropping a Response instance, one one of two things can happen. If the response has unread bytes, the underlying socket cannot be reused, and the connection is closed. If there are no unread bytes, the connection is returned to the Agent connection pool used (notice there is always an agent present, even when not explicitly configured by the user).

let response = ureq::get("http://example.com/").call()?;

// socket is still open and the response body has not been read.

let text = response.into_string()?;

// response is consumed, and body has been read.

Implementations

Construct a response with a status, status text and a string body.

This is hopefully useful for unit tests.

Example:

let resp = ureq::Response::new(401, "Authorization Required", "Please log in")?;

assert_eq!(resp.status(), 401);

The URL we ended up at. This can differ from the request url when we have followed redirects.

The http version: HTTP/1.1

The status as a u16: 200

The status text: OK

The HTTP spec allows for non-utf8 status texts. This uses from_utf8_lossy to convert such lines to &str.

The header value for the given name, or None if not found.

For historical reasons, the HTTP spec allows for header values to be encoded using encodigs like iso-8859-1. Such encodings means the values are not possible to interpret as utf-8.

In case the header value can’t be read as utf-8, this function returns None (while the name is visible in Response::headers_names()).

A list of the header names in this response. Lowercased to be uniform.

It’s possible for a header name to be returned by this function, and still give a None value. See Response::header() for an explanation as to why.

Tells if the response has the named header.

All headers corresponding values for the give name, or empty vector.

The content type part of the “Content-Type” header without the charset.

Example:

let resp = ureq::get("http://example.com/").call()?;
assert!(matches!(resp.header("content-type"), Some("text/html; charset=ISO-8859-1")));
assert_eq!("text/html", resp.content_type());

The character set part of the “Content-Type”.

Example:

let resp = ureq::get("http://example.com/").call()?;
assert!(matches!(resp.header("content-type"), Some("text/html; charset=ISO-8859-1")));
assert_eq!("ISO-8859-1", resp.charset());

Turn this response into a impl Read of the body.

  1. If Transfer-Encoding: chunked, the returned reader will unchunk it and any Content-Length header is ignored.
  2. If Content-Length is set, the returned reader is limited to this byte length regardless of how many bytes the server sends.
  3. If no length header, the reader is until server stream end.

Note: If you use read_to_end() on the resulting reader, a malicious server might return enough bytes to exhaust available memory. If you’re making requests to untrusted servers, you should use .take() to limit the response bytes read.

Example:

use std::io::Read;
let resp = ureq::get("http://httpbin.org/bytes/100")
    .call()?;

assert!(resp.has("Content-Length"));
let len = resp.header("Content-Length")
    .and_then(|s| s.parse::<usize>().ok()).unwrap();

let mut bytes: Vec<u8> = Vec::with_capacity(len);
resp.into_reader()
    .take(10_000_000)
    .read_to_end(&mut bytes)?;

assert_eq!(bytes.len(), len);

Turn this response into a String of the response body. By default uses utf-8, but can work with charset, see below.

This is potentially memory inefficient for large bodies since the implementation first reads the reader to end into a Vec<u8> and then attempts to decode it using the charset.

If the response is larger than 10 megabytes, this will return an error.

Example:

let text = ureq::get("http://httpbin.org/get/success")
    .call()?
    .into_string()?;

assert!(text.contains("success"));

Charset support

If you enable feature ureq = { version = "*", features = ["charset"] }, into_string() attempts to respect the character encoding of the Content-Type header. If there is no Content-Type header, or the Content-Type header does not specify a charset, into_string() uses utf-8.

I.e. Content-Length: text/plain; charset=iso-8859-1 would be decoded in latin-1.

Read the body of this response into a serde_json::Value, or any other type that implements the serde::Deserialize trait.

You must use either a type annotation as shown below (message: Message), or the turbofish operator (::<Type>) so Rust knows what type you are trying to read.

Requires feature ureq = { version = "*", features = ["json"] }

Example:

use serde::{Deserialize, de::DeserializeOwned};

#[derive(Deserialize)]
struct Message {
    hello: String,
}

let message: Message =
    ureq::get("http://example.com/hello_world.json")
        .call()?
        .into_json()?;

assert_eq!(message.hello, "world");

Or, if you don’t want to define a struct to read your JSON into, you can use the convenient serde_json::Value type to parse arbitrary or unknown JSON.

let json: serde_json::Value = ureq::get("http://example.com/hello_world.json")
    .call()?
    .into_json()?;

assert_eq!(json["hello"], "world");

Trait Implementations

Formats the value using the given formatter. Read more

Performs the conversion.

Parse a response from a string.

Example:

let s = "HTTP/1.1 200 OK\r\n\
    X-Forwarded-For: 1.2.3.4\r\n\
    Content-Type: text/plain\r\n\
    \r\n\
    Hello World!!!";
let resp = s.parse::<ureq::Response>().unwrap();
assert!(resp.has("X-Forwarded-For"));
let body = resp.into_string().unwrap();
assert_eq!(body, "Hello World!!!");

The associated error which can be returned from parsing.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.