Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boyter/activitypub
Sequence diagrams of how ActivityPub works
https://github.com/boyter/activitypub
Last synced: about 1 month ago
JSON representation
Sequence diagrams of how ActivityPub works
- Host: GitHub
- URL: https://github.com/boyter/activitypub
- Owner: boyter
- License: mit
- Created: 2023-01-24T21:26:02.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-03T23:06:32.000Z (over 1 year ago)
- Last Synced: 2024-05-02T00:56:00.704Z (6 months ago)
- Size: 46.9 KB
- Stars: 50
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ActivityPub Explained
```
/\ | | (_) (_) |
/ \ ___| |_ ___ ___| |_ _ _
/ /\ \ / __| __| \ \ / / | __| | | |
/ ____ \ (__| |_| |\ V /| | |_| |_| |
/_/ \_\___|\__|_| \_/ |_|\__|\__, |
| __ \ | | __/ |
| |__) | _| |__ |___/
| ___/ | | | '_ \
| | | |_| | |_) |
|_| \__,_|_.__/
```Sequence diagrams of how ActivityPub/Webfinger works and how to implement against it will be stored here. This is needed because the spec is vague and different instances implement things in different ways.
The goal is to create a collection that can be used by someone in a clean room environment to implement an instance that could work against the fediverse.
- [Announce Post](announce-post.md) - Boost/Retweet/Share
- [Create Post](create-post.md) - Toot/Tweet/Post
- [Move Post](move-post.md) - User Migration
- [Delete Post](delete-post.md) - Toot/Tweet/Post Deletion
- [Follow Post](follow-post.md) - Follow Account
- [Webfinger](webfinger.md) - Webfinger
- [User](user.md) - Getting user detailsPR's are encouraged!
The following are good to look through,
- https://www.w3.org/TR/activitypub/
- https://docs.joinmastodon.org/spec/activitypub/
- https://activitypub.rocks/The following are implementations in a few different languages,
- https://github.com/jointakahe/takahe Python
- https://humungus.tedunangst.com/r/honk Go
- https://blog.joinmastodon.org/2018/06/how-to-implement-a-basic-activitypub-server/ JavaScript
- https://github.com/benbrown/shuttlecraft JavaScriptSome specific behaviors are covered well here.
- https://docs.gotosocial.org/en/latest/federation/behaviors/outbox/