Skip to main content

io_http/rfc6750/
mod.rs

1//! OAuth 2.0 Bearer token usage ([RFC 6750]).
2//!
3//! Opaque tokens issued by an authorization server, transmitted in the
4//! `Authorization` request header (`Bearer <token>`). Used by JMAP (RFC 8620)
5//! and OAuth 2.0 flows; the token itself is obtained separately (for example
6//! via [`io-oauth`]).
7//!
8//! [RFC 6750]: https://www.rfc-editor.org/rfc/rfc6750
9//! [`io-oauth`]: https://github.com/pimalaya/io-oauth
10
11pub mod bearer;