blob: 9fd0556451fd8ff3262e8230d290b299b103165a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
//! # serenity-oauth
//!
//! `serenity-oauth` is a collection of HTTP library support bridges for
//! interacting with the OAuth2 API that Discord uses.
//!
//! It includes support for sending code exchange requests and refresh token
//! requests.
//!
//! Included are models in the [`model`] directory that represent request bodies
//! and response bodies. The [`Scope`] enum represents possible OAuth2 scopes
//! that can be granted.
//!
//! In the [`utils`] module, functions to produce authorization URLs are
//! available. For example, [`utils::bot_authorization_url`] can be used to
//! produce a URL that can be used to redirect users to authorize an application
//! with the [`Scope::Bot`] scope.
//!
//! [`Scope`]: enum.Scope.html
//! [`Scope::Bot`]: enum.Scope.html#variant.Bot
//! [`model`]: model/
//! [`utils`]: utils/
//! [`utils::bot_authorization_url`]: utils/fn.bot_authorization_url.html
#![deny(missing_docs)]
#[macro_use] extern crate serde_derive;
extern crate hyper;
extern crate percent_encoding;
extern crate serde;
extern crate serde_json;
extern crate serde_urlencoded;
extern crate serenity_model;
pub mod bridge;
pub mod constants;
pub mod model;
pub mod utils;
mod error;
mod scope;
pub use bridge::hyper::DiscordOAuthHyperRequester;
pub use error::{Error, Result};
pub use scope::Scope;
|