Send

Simple Cloud Notifier

Get your user-id and user-key from the app and send notifications to your phone by performing a POST request against https://simplecloudnotifier.blackforestbytes.com/send.php

curl                                          \
    --data "user_id={userid}"                 \
    --data "user_key={userkey}"               \
    --data "priority={0|1|2}"                 \
    --data "title={message_title}"            \
    --data "content={message_content}"        \
    https://scn.blackforestbytes.com/send.php

The content and priority parameters are optional, you can also send message with only a title and the default priority

curl                                          \
    --data "user_id={userid}"                 \
    --data "user_key={userkey}"               \
    --data "title={message_title}"            \
    https://scn.blackforestbytes.com/send.php
© blackforestbytes