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
https://simplecloudnotifier.blackforestbytes.com/send.php
curl \ --data "user_id={userid}" \ --data "user_key={userkey}" \ --data "message={message_title}" \ --data "content={message_content}" \ https://simplecloudnotifier.blackforestbytes.com/send.php
The content parameter is optional, you can also send message with only a title
content
curl \ --data "user_id={userid}" \ --data "user_key={userkey}" \ --data "message={message_title}" \ https://simplecloudnotifier.blackforestbytes.com/send.php