learn and share notes on atproto (wip) 馃
malfestio.stormlightlabs.org/
readability
solid
axum
atproto
srs
1//! OAuth 2.1 implementation for AT Protocol.
2//!
3//! This module provides the OAuth 2.1 client flow components required
4//! for AT Protocol authentication:
5//!
6//! - PKCE (Proof Key for Code Exchange)
7//! - DPoP (Demonstrating Proof of Possession)
8//! - Handle/DID resolution
9//! - Token management
10
11pub mod client_metadata;
12pub mod dpop;
13pub mod flow;
14pub mod pkce;
15pub mod resolver;
16
17pub use client_metadata::client_metadata_handler;