Visit project on GitHub
Set theme to dark

Post a federated reply comment as a user of another ActivityPub server, not the episode’s comment server

A client-to-server (or c2s) ActivityPub interaction

In this scenario, the podcast client app facilitates logging in as an authenticated user of an ActivityPub server that is not the server specified in the RSS feed.

Federated Pleroma example (replying to Mastodon)

POST https://pleroma-example.com/users/the-user/outbox
Authorization: Bearer <access-token>

{
    "@context": "https://www.w3.org/ns/activitystreams",
    "type": "Create",
    "to": [
        "https://www.w3.org/ns/activitystreams#Public"
        "https://mastodon-example.com/users/a-user"
    ],
    "object": {
        "type": "Note",
        "to": [
        "https://www.w3.org/ns/activitystreams#Public",
        "https://mastodon-example.com/users/a-user"
        ],
        "conversation": "<conversation-from-comment-above>",
        "published": "2021-12-15T18:46:37.830Z",
        "content": "This is the reply comment!",
        "inReplyTo": "<id-from-comment-above>"
    }
}