ActivityPub
This article is a stub. You can help the IndieWeb wiki by expanding it.
ActivityPub is a decentralized social networking protocol (W3C Recommendation) developed in the Social Web Working Group based on pump.io and ActivityStreams. Conceptually they were all preceded by OStatus. It was briefly known as ActivityPump before being renamed to ActivityPub.
IndieWeb Examples
-
Matthias Pfefferle has built the ActivityPub plugin for WordPress which allows his WordPress sites to (at least partially) support the ActivityPub protocol so sites like Mastodon and other parts of the Fediverse view his sites as a federated member. -
Aaron Parecki - I have native ActivityPub support in my website so that it can be followed from people using compatible software. I turned that knowledge into a separate service that can be used to add ActivityPub to any website, the code is available as Nautilus on GitHub. -
Greg McVerry uses Mastodon Plugin for Known which enables syndication, and native ActivityPub support in Micro.blog:
- Added the Mastodon Plugin for Known to syndicate posts but also used Bridgy to create an instance of his blog at @quickthoughts.jgregorymcverry.com@quickthoughts.jgregorymcverry.com.
- Uses the native ActivityPub support in Micro.blog which can be viewed @jgmac1106@stream.jgregorymcverry.com he can then send posts from his blog to his ActivityPub instance through Micro.blog
-
Jan-Lukas Else has native ActivityPub support on his blog using a custom implementation, that sends JSON Feed updates to followers.
Contents
Bridging
ActivityPub Notifications to Webmention
Since Mastodon and other ActivityPub implementations often include Microformats on their permalinks, a shortcut for receiving comments from ActivityPub servers is to treat them as webmentions instead of doing the full Inbox processing normally required by ActivityPub.
When your ActivityPub inbox receives a notification:
- If
typeisCreate- and if
object.InReplyTois present and is a URL on your domain- then save
object.idas "source" - save
object.InReplyToas "target" - send a webmention to your webmention endpoint with the source and target
- then save
- and if
Then your site's existing webmention handling will fetch and verify the ActivityPub source URL, and if there are Microformats on the page, will even look like a reply.
Example:
- Post permalink: https://aaronparecki.com/2018/07/01/9/
- Mastodon reply URL: https://mastodon.social/@aaronpk/100302258872089825
Sending an ActivityPub notification from an IndieWeb website
As more people and services in the IndieWeb build in support for ActivityPub, it's important to remember that competing communication options could happen. Here is a general top-level breakdown of sending an ActivityPub notification for a reply or like.
The u-in-reply-to or u-like-of url will be referred to as the "targetUrl" below, and your post is referred to as the sourceUrl.
- Fetch the targetUrl via text/html, check for a webmention endpoint.
- If webmention endpoint exists, abort ActivityPub and send a webmention for sourceUrl to targetUrl
- If webmention endpoint does not exist, attempt to fetch the targetUrl as
application/activity+json- If targetUrl doesn't return JSON, targetUrl doesn't accept ActivityPub, abort.
- If targetUrl returns JSON, check for a top-level
@contextattribute. This can be an array or a string, check if it contains "https://www.w3.org/ns/activitystreams".- If targetUrl's JSON response does not return the right details, abort.
- If targetUrl's JSON response returns the correct info, check the
attributedToattribute for the author's ActivityPub profile.- Fetch the author's ActivityPub profile url as
application/activity+jsonand check top-levelinboxattribute for the author's ActivityPub inbox endpoint. - Send an ActivityPub notification to the author's ActivityPub inbox endpoint.
- Fetch the author's ActivityPub profile url as
Tips & Tricks for Sending ActivityPub notifications
- Mastodon requires that you include a "Mention" in the tags array, but you also need to include the person's
preferredUsernamein the post text to show it as a notification. - Technically
attributedTocan be an object, but this hasn't been seen in the wild yet.
How To
(this section is a stub, please add links to How To articles for ActivityPub)
- Funkwhale’s federation documentation contains very clear examples of activities to be send around.
- How to Implement a Basic ActivityPub Server
IndieWebCamp Sessions
(pretty sure there's been more sessions, e.g. re: Bridging that was brainstormed and developed at 2017 or 2018)
Criticism
(this section needs organizing into discrete rational criticisms, even better if they can be filed as issues on the specs and moved to an "Issues" section instead)
- 2018-02-01 : ActivityPub - one protocol to rule them all? (archived)
- Response: 2019-01-09 : ActivityPub? Well, it’s not that bad (archived)
- 2019-01-13 : ActivityPub - Final thoughts, one year later (archived)
- 2018-07-30 ActivityPub hot take
This isn’t creating a distributed network, this is creating a whole bunch of massive points of failure. And these failures grow exponentially as more failures happen. Its very nature also makes it so that it’s much more difficult for this data to be migrated; look at what happened when witches.town went down, or when scifi.fyi’s certificate expired [Ed.: for ~ a day https://scifi.fyi/@BrokenBiscuit/100426278316164570], and the effects this had on all other instances regardless of the users of those instances. And spinning up an instance is expensive, and that cost rises with the number of instances out there.
- 2018-08-07 Thread from author of litepub draft specification, provides background frustration and motivations for a variant protocol: https://pleroma.site/notice/2962026
- "activitypub is a crummy protocol, largely designed by committee, largely intended to make W3C brass happy by cargoculting even more of their crummy technology into it.
we need to fork this shit today and purge W3C from activitypub. it's the only conclusion i keep coming to after trying to read their specs." @kaniini August 7, 2018
- "activitypub is a crummy protocol, largely designed by committee, largely intended to make W3C brass happy by cargoculting even more of their crummy technology into it.
See Also
- https://activitypub.com/ which apparently redirects to https://activitypub.rocks/
- https://github.com/go-fed/presentations/tree/master/2018/go-activitypub-journey
- https://blog.joinmastodon.org/2018/07/how-to-make-friends-and-verify-requests/
- https://octodon.social/web/statuses/100527636732474823
- Bridgy Fed
- ActivityPub plugin for WordPress from
Matthias Pfefferle - CommonsPub
- https://twitter.com/tinysubversions/status/1204494753066209280
- "I just released a small ActivityPub debugging tool. It's hosted on @glitch and the idea is that an AP developer can simply remix the project and instantly have their own tiny AP server from which they can send arbitrary test messages.
https://tinysubversions.com/notes/activitypub-tool/" @tinysubversions December 10, 2019
- "I just released a small ActivityPub debugging tool. It's hosted on @glitch and the idea is that an AP developer can simply remix the project and instantly have their own tiny AP server from which they can send arbitrary test messages.
- MoodleNet: What is a federated social network?
- WriteFreely
- PixelFed
- https://socialhub.activitypub.rocks/c/software/14













