From badb255fde00d33d6c08a01bfc38a801c5dbf620 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sat, 7 Sep 2019 14:24:49 -0400 Subject: [PATCH] Created Notify_simplepush (markdown) --- Notify_simplepush.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Notify_simplepush.md diff --git a/Notify_simplepush.md b/Notify_simplepush.md new file mode 100644 index 0000000..bab0003 --- /dev/null +++ b/Notify_simplepush.md @@ -0,0 +1,27 @@ +## SimplePush Notifications +* **Source**: https://simplepush.io/ +* **Icon Support**: No +* **Message Format**: Text +* **Message Limit**: 10000 Characters per Message + +SimplePush is a pretty straight forward messaging system you can get for your Android Device through their App [here](https://play.google.com/store/apps/details?id=io.tymm.simplepush) + +### Syntax +Valid authentication syntaxes are as follows: +* **spush**://**{apikey}**/ + +### Parameter Breakdown +| Variable | Required | Description +| ----------- | -------- | ----------- +| apikey | Yes | This is required for your account to work. You will be provided one from your SimplePush account. +| event | No | Optionally specify an event on the URL. +| encrypt | No | SimplePush offers a method of encrypting the message and title during transmission. The messages are already transmitted on a secure https:// connection therefore this overhead has been made optional. It is disabled by default. +| salt | No | Should you choose to encrypt your connection (by setting **encrypt=Yes**), you can also specify your own `salt` which is used to encrypt your message. If a `salt` isn't specified then a default value of `4B5AA3109F438E02` is used instead. + +#### Example +Send a SimplePush notification: +```bash +# Assume: +# - our {apikey} is ABC123 +apprise spush://ABC123 +```