#http-api #http #api-bindings #rfc-9457 #rfc-7807

problemdetails

Support for Problem Details (RFC-7807 / RFC-9457) responses in HTTP APIs

6 releases (3 breaking)

0.4.1 Feb 5, 2024
0.4.0 Feb 5, 2024
0.3.0 Nov 29, 2023
0.2.1 Dec 23, 2022
0.1.0 Jul 11, 2022

#167 in HTTP server

Download history 10/week @ 2024-02-02 2/week @ 2024-02-09 8/week @ 2024-02-16 170/week @ 2024-02-23 46/week @ 2024-03-01 37/week @ 2024-03-08 62/week @ 2024-03-15 230/week @ 2024-03-22 122/week @ 2024-03-29 119/week @ 2024-04-05

552 downloads per month
Used in yeet-yoink

MIT license

19KB
308 lines

Problem Details

Build status Crates.io Documentation

This crate provides an implementation of a Problem Details response for HTTP APIs, as defined in RFC-7807 / RFC-9457. This is a standard way for HTTP APIs to indicate that a problem occurred with the request, including some standard payload fields as required.

Example Usage

The following is a valid handler for Axum that returns the Forbidden example from RFC-9457 Section 3:

async fn forbidden() -> problemdetails::Result<String> {
    Err(problemdetails::new(StatusCode::FORBIDDEN)
            .with_type("https://example.com/probs/out-of-credit")
            .with_title("You do not have enough credit.")
            .with_detail("Your current balance is 30, but that costs 50.")
            .with_instance("/account/12345/msgs/abc")
            .with_value("balance", 30)
            .with_value("accounts", vec!["/account/12345", "/account/67890"]))
}

When used with a supported HTTP Server, this will automatically generate the correct JSON response and set the Content-Type header to the correct value of application/problem+json.

If used with an unsupported HTTP Server, the status code and body of the problem details can be extracted and sent manually. The body field is in the correct structure to format into JSON using something like serde already, so serializing it should be as simple as the HTTP Server allows for.

Supported HTTP Servers

Currently this is only supported with the following HTTP Servers:

Examples of use with the different HTTP Servers can be found in the examples directory.

Features

HTTP Server support is behind feature flags for the appropriate HTTP Server. As such, you will need to enable the correct feature for the HTTP Server that you are using.

Currently supported features are:

  • axum - For the Axum HTTP Server.

Safety

This crate uses #![forbid(unsafe_code)] to ensure everything is implemented in 100% safe Rust.

Minimum supported Rust version

The MSRV for problemdetails is 1.60.0. However, the HTTP Servers that are used with it might need a higher version.

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in problemdetails by you, shall be licensed as MIT, without any additional terms or conditions.

Dependencies

~2–4.5MB
~87K SLoC