share-lt/cmd/curl_post_entry_anon.sh
jon brookes 6fbeedd50c feat: implement basic API
with authorization and validation
2026-01-07 19:52:23 +00:00

16 lines
No EOL
414 B
Bash
Executable file

#!/usr/bin/env bash
# this should fail as no token is provided
# user is not authenticated
# no token has been granted
URL='http://127.0.0.1:8000/api/entries'
curl -X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"title": "Yet Another New Entry Title",
"content": "This is the content yet again of the new entry."
}' \
$URL