1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub const MYPLEX_DEFAULT_API_URL: &str = "https://plex.tv/";
pub const MYPLEX_SIGNIN_PATH: &str = "/api/v2/users/signin";
pub const MYPLEX_USER_INFO_PATH: &str = "/api/v2/user";
pub const MYPLEX_SIGNOUT_PATH: &str = "/api/v2/users/signout";
pub const MYPLEX_CLAIM_TOKEN_PATH: &str = "/api/claim/token.json";
pub const MYPLEX_PRIVACY_PATH: &str = "/api/v2/user/privacy";
pub const MYPLEX_WEBHOOKS_PATH: &str = "/api/v2/user/webhooks";
pub const MYPLEX_DEVICES: &str = "/devices.xml";
pub const MYPLEX_RESOURCES: &str = "/api/resources";
pub const MYPLEX_LINK: &str = "/api/v2/pins/link.json";
pub const SERVER_MEDIA_PROVIDERS: &str = "/media/providers";
pub const SERVER_MYPLEX_ACCOUNT: &str = "/myplex/account";
pub const SERVER_MYPLEX_CLAIM: &str = "/myplex/claim";
pub const SERVER_PREFS: &str = "/:/prefs";
pub const CLIENT_RESOURCES: &str = "/resources";