oauth2-client 0.2.0

OAuth 2.0 Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! https://datatracker.ietf.org/doc/html/rfc6749#section-4.4

//
pub mod access_token_endpoint;
pub mod provider_ext;

pub use access_token_endpoint::{AccessTokenEndpoint, AccessTokenEndpointError};

//
#[cfg(feature = "with-flow")]
pub mod flow;
#[cfg(feature = "with-flow")]
pub use flow::{Flow, FlowExecuteError};