Skip to content

Instantly share code, notes, and snippets.

@indirection-ctrl-a-ctrl-x
Created July 3, 2020 03:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indirection-ctrl-a-ctrl-x/7f1b64d059717da535b64b26d40adb90 to your computer and use it in GitHub Desktop.
Save indirection-ctrl-a-ctrl-x/7f1b64d059717da535b64b26d40adb90 to your computer and use it in GitHub Desktop.

A study of ActivityPub

A series of observations about ActivityPub against similar technologies.

Message post format and size

Email

From: John Doe <johndoe@example.org>
To: Room35 <room35@example.org>
Subject: None
Date: Fri, 21 Nov 1997 09:55:06 -0600
Message-ID: <1234@local.machine.example>

hello

169 characters

Matrix

PUT /_matrix/client/r0/rooms/%21636q39766251%3Aexample.com/send/m.room.message/35

{
  "msgtype": "m.text",
  "body": "hello"
}

128 characters

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment