Created Notify_simplepush (markdown)

master
Chris Caron 2019-09-07 14:24:49 -04:00
parent 1f16571ad6
commit badb255fde
1 changed files with 27 additions and 0 deletions

27
Notify_simplepush.md Normal file

@ -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
```