Or pick one of the following
Eclipsededge LeusloUdyeyo AngelEgotrip Flafii Bagospan QUEENSLIVEHERE criticninja
The below shows each ActivityPub type and its progress on being supported. More to come as things are implemented.
curl --location --request POST 'https://mastinator.com/u/testinbox/inbox' \
--header 'Content-Type: application/json' \
--data-raw '{
"@context": "https://www.w3.org/ns/activitystreams",
"actor": "https://mastinator.com/",
"id": "ShouldBeUniqueDuplicatesIgnoredTillDeleted",
"object": {
"content": "Hello!",
"conversation": "empty",
"id": "ShouldBeUniqueDuplicatesIgnoredTillDeleted",
"published": "2022-12-20T06:03:41Z",
"summary": "",
"to": "https://www.w3.org/ns/activitystreams#Public",
"type": "Note",
"url": "https://mastinator.com/"
},
"published": "2022-12-20T06:03:41Z",
"to": "https://www.w3.org/ns/activitystreams#Public",
"type": "Create"
}'
# Mastodon example
curl --location --request POST 'https://mastinator.com/u/testinbox/inbox' \
--header 'Content-Type: application/json' \
--data-raw '{
"@context": "https://www.w3.org/ns/activitystreams",
"actor": "https://mastinator.com/u/testinbox",
"cc":
[
"https://mastinator.com/u/Etiolate"
],
"id": "https://mastinator.com/u/testinbox/217h4NBLrMJzT3qz7B#delete",
"object":
{
"atomUri": "https://mastinator.com/u/testinbox/217h4NBLrMJzT3qz7B",
"id": "ShouldMatchTheIdOfObjectInCreate",
"type": "Tombstone"
},
"published": "2023-01-05T09:26:18Z",
"to": "https://www.w3.org/ns/activitystreams#Public",
"type": "Delete"
}'
# Other server example
curl --location --request POST 'https://mastinator.com/u/testinbox/inbox' \
--header 'Content-Type: application/json' \
--data-raw '{
"@context": "https://www.w3.org/ns/activitystreams",
"actor": "https://mastinator.com/u/testinbox",
"cc":
[
"https://mastinator.com/u/testinbox"
],
"id": "ShouldMatchTheIdOfObjectInCreate",
"object": "https://mastinator.com/u/testinbox/217h4NBLrMJzT3qz7B",
"published": "2023-01-05T09:26:18Z",
"to": "https://www.w3.org/ns/activitystreams#Public",
"type": "Delete"
}'