pub mod header {
pub const APPLICATION_JSON: &str = "application/json";
pub const X_WWW_FORM_URLENCODED: &str = "application/x-www-form-urlencoded";
}
pub mod param {
pub const CLIENT_ID: &str = "client_id";
pub const CLIENT_SECRET: &str = "client_secret";
pub const CODE: &str = "code";
pub const GRANT_TYPE: &str = "grant_type";
pub mod grant_type {
pub const AUTHORIZATION_CODE: &str = "authorization_code";
pub const REFRESH_TOKEN: &str = "refresh_token";
}
pub const REDIRECT_URI: &str = "redirect_uri";
pub const REFRESH_TOKEN: &str = "refresh_token";
pub const RESPONSE_TYPE: &str = "response_type";
pub mod response_type {
pub const CODE: &str = "code";
}
pub const SCOPE: &str = "scope";
pub const STATE: &str = "state";
}