blob: 5cafc8499b2a85c009d66f7fb68d6a88232aeaf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
echo "Content-type: application/activity+json"
echo ""
echo '{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "OrderedCollection",
"totalItems": 1,
"orderedItems": [
{
"type": "Note",
"content": "hi"
}
]}'
exit 0
|