fedimovies/src/activitypub/constants.rs

9 lines
432 B
Rust
Raw Normal View History

2021-11-18 15:57:44 +00:00
// https://www.w3.org/TR/activitypub/#server-to-server-interactions
2022-10-01 16:56:57 +00:00
pub const AP_MEDIA_TYPE: &str = r#"application/ld+json; profile="https://www.w3.org/ns/activitystreams""#;
pub const AS_MEDIA_TYPE: &str = "application/activity+json";
2021-11-18 15:57:44 +00:00
2021-04-09 00:22:17 +00:00
pub const AP_CONTEXT: &str = "https://www.w3.org/ns/activitystreams";
pub const AP_PUBLIC: &str = "https://www.w3.org/ns/activitystreams#Public";
pub const ACTOR_KEY_SUFFIX: &str = "#main-key";