Follow Requests
https://fedidevs.org/projects/server-apps/owncast/follow/
Owncast accepts inbound Follow requests from other ActivityPub Actors. When a Follow request is received Owncast will add the Actor to the list of Followers for the Owncast instance and display it in chat.
Request
| Reference | |
|---|---|
| Activity | Follow |
| Object | An ActivityPub Actor (IRI or inline) |
| ID | A unique Follow request IRI |
Example expected inbound Follow request
{
"@context": "https://www.w3.org/ns/activitystreams",
"id": "https://example.com/activities/123",
"type": "Follow",
"actor": "https://example.com/users/123",
"object": "https://example.com/users/456"
}
Accept
| Reference | |
|---|---|
| Activity | Accept |
| Object | An ActivityPub Actor (IRI or inline) |
| ID | The initial Follow activity request ID |
Example expected inbound Follow accept
Example TODO