Follow Requests

By Fediverse Developer Network

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
ActivityFollow
ObjectAn ActivityPub Actor (IRI or inline)
IDA 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
ActivityAccept
ObjectAn ActivityPub Actor (IRI or inline)
IDThe initial Follow activity request ID

Example expected inbound Follow accept

Example TODO