oxide-auth 0.6.1

A OAuth2 library for common web servers, featuring a set of configurable and pluggable backends.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A baseline implemention of [`Endpoint`] and [`WebRequest`].
//!
//! Contains primitive extension implementations as well as straightforward request formats
//! suitable for HTTP-less OAuth applications. This is useful for testing as well as token
//! endpoints that operate behind an HTTP portal, or even for applying OAuth2 outside the web
//! domain.
//!
//! [`Endpoint`]: ../../endpoint/trait.Endpoint.html
//! [`WebRequest`]: ../../endpoint/trait.Endpoint.html
pub mod endpoint;

pub mod extensions;

pub mod request;