aboutsummaryrefslogtreecommitdiff
path: root/sample-cgi-handler.sh
blob: ccad5e7a4f8bff7e93e8d1d881654ebd66dc9d46 (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