aboutsummaryrefslogtreecommitdiff
path: root/sample-cgi-handler.sh
blob: 7cef511e6efaefa421227492c986e09bf2e1743e (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,
  "items": [
    {
      "type": "Note",
      "content": "hi"
    },
  ]}'
exit 0