7 lines
358 B
Bash
7 lines
358 B
Bash
#!/bin/bash
|
|
TITLE="My Title"
|
|
MESSAGE="Hello: "
|
|
PRIORITY=5
|
|
URL="http://localhost:8008/message?token=<apptoken>"
|
|
|
|
curl -s -S --data '{"message": "'"${MESSAGE}"'", "title": "'"${TITLE}"'", "priority":'"${PRIORITY}"', "extras": {"client::display": {"contentType": "text/markdown"}}}' -H 'Content-Type: application/json' "$URL" |