2018-09-22 18:00:00 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="stylesheet" href="/css/mini-default.min.css">
|
2018-09-22 19:40:50 +02:00
|
|
|
<!--<link rel="stylesheet" href="/css/mini-nord.min.css">-->
|
|
|
|
<!--<link rel="stylesheet" href="/css/mini-dark.min.css">-->
|
2018-09-22 18:00:00 +02:00
|
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
|
|
<form id="mainpnl">
|
|
|
|
|
|
|
|
<a href="https://play.google.com/store/apps/details?id=com.blackforestbytes.simplecloudnotifier" class="button bordered" id="tl_link"><span class="icn-google-play"></span></a>
|
|
|
|
<a href="/index.php" class="button bordered" id="tr_link">Send</a>
|
|
|
|
|
|
|
|
<h1>Simple Cloud Notifier</h1>
|
|
|
|
|
|
|
|
<p>Get your user-id and user-key from the app and send notifications to your phone by performing a POST request against <code>https://simplecloudnotifier.blackforestbytes.com/send.php</code></p>
|
|
|
|
<pre>curl \
|
|
|
|
--data "user_id={userid}" \
|
|
|
|
--data "user_key={userkey}" \
|
2018-09-22 19:40:50 +02:00
|
|
|
--data "title={message_title}" \
|
2018-09-22 18:00:00 +02:00
|
|
|
--data "content={message_content}" \
|
|
|
|
https://simplecloudnotifier.blackforestbytes.com/send.php</pre>
|
|
|
|
<p>The <code>content</code> parameter is optional, you can also send message with only a title</p>
|
|
|
|
<pre>curl \
|
|
|
|
--data "user_id={userid}" \
|
|
|
|
--data "user_key={userkey}" \
|
2018-09-22 19:40:50 +02:00
|
|
|
--data "title={message_title}" \
|
2018-09-22 18:00:00 +02:00
|
|
|
https://simplecloudnotifier.blackforestbytes.com/send.php</pre>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<div id="copyinfo">
|
|
|
|
<a href="https://www.blackforestbytes.com">© blackforestbytes</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|