megalodon 1.3.0

Fediverse API client library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
//! Default values

/// A static value for no redirect url.
/// Please use this value when you get an access token.
pub static NO_REDIRECT: &str = "urn:ietf:wg:oauth:2.0:oob";
/// Default User-Agent value.
pub static DEFAULT_UA: &str = "megalodon";
/// Default scopes value for register app.
pub static DEFAULT_SCOPES: &'static [&str] = &["read", "write", "follow"];