Updated Notify_pushed (markdown)

master
lead2gold 2019-01-30 21:59:47 -05:00
parent 206b041407
commit 8222566d9b
1 changed files with 7 additions and 8 deletions

@ -12,23 +12,22 @@ Once this is done, you'll get access to an:
* Application Key: **{app_key}**
* Application Secret: **{app_secret}**
You'll also need something to notify; so once you've created an account and an app, you'll also need to retrieve their mobile app (for either [Android](https://play.google.com/store/apps/details?id=co.pushed.GetPushed) or [iOS](https://itunes.apple.com/us/app/get-pushed/id804777699?mt=8&uo=6&at=&ct=)) and log in.
### Syntax
Valid syntaxes are as follows:
* **pushed**://**{app_alias}**/**{app_key}**/**{app_secret}**
* **pushed**://**{app_key}**/**{app_secret}**
### Parameter Breakdown
| Variable | Required | Description
| ----------- | -------- | -----------
| app_key | Yes | The Application Key can be generated on the Settings page of your Pushed's account. You must have an application key for this Notification service to work.
| app_secret | Yes | The Application Secret can be generated on the Settings page of your Pushed's account. You must have an application secret for this Notification service to work.
| user | No | Associated user(s) with your Pushed account can be found in your account.
| channel | No | Channels must be prefixed with a hash (#) or they will be interpreted as a application id. Channels must be registered with your Pushed account to work.
#### Example
Send a Pushed notification to all devices:
Send a Pushed notification:
```bash
# Assuming our {app_key} is abcdefghijklmno
# Assuming our {app_secret} is 12345678
apprise pushed://abcdefghijklmno/12345678
# Assuming our {app_key} is sopJo0dVKVC9YK1F5wDQ
# Assuming our {app_secret} is KWEtXxVm1PtDTTrKaEM49DhBd8MJvSMCHSvunPerbCf1MaNLO300roqOL0F8HErAl
apprise pushed://sopJo0dVKVC9YK1F5wDQ/KWEtXxVm1PtDTTrKaEM49DhBd8MJvSMCHSvunPerbCf1MaNLO300roqOL0F8HErAl
```