diff options
Diffstat (limited to 'sample-cgi-handler.sh')
-rwxr-xr-x | sample-cgi-handler.sh | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/sample-cgi-handler.sh b/sample-cgi-handler.sh index afd4ada..7cef511 100755 --- a/sample-cgi-handler.sh +++ b/sample-cgi-handler.sh @@ -1,5 +1,14 @@ #!/bin/bash -echo "Content-type: text/plain" +echo "Content-type: application/activity+json" echo "" -echo "This is a random value from bash: $RANDOM on $(date)" +echo '{ + "@context": "https://www.w3.org/ns/activitystreams", + "type": "OrderedCollection", + "totalItems": 1, + "items": [ + { + "type": "Note", + "content": "hi" + }, + ]}' exit 0 |