From 1c79c977bde0c1bd5a00b91b4ca48046d40bac5a Mon Sep 17 00:00:00 2001 From: lead2gold Date: Wed, 30 Jan 2019 20:36:42 -0500 Subject: [PATCH] Created Notify_pushed (markdown) --- Notify_pushed.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Notify_pushed.md diff --git a/Notify_pushed.md b/Notify_pushed.md new file mode 100644 index 0000000..9e72531 --- /dev/null +++ b/Notify_pushed.md @@ -0,0 +1,36 @@ +## Pushed Notifications +* **Source**: https://pushed.co/ +* **Icon Support**: No +* **Message Format**: Text +* **Message Limit**: 32768 Characters per Message + +### Account Setup +You'll want to _Request Developer Access_ which is asked of you when you first log in to the site. The request can take + +### Syntax +Valid syntaxes are as follows: +* **pushed**://**{app_key}**/**{app_secret}** +* **pushed**://**{app_key}**/**{app_secret}**/**@{user}** +* **pushed**://**{app_key}**/**{app_secret}**/**#{channel}** + +You can also form any combination of the above and perform updates from one url: +* **pushed**://**{accesstoken}**/**@{user}**/**#{channel}** + +If neither a **@{user}** or **#{channel}** is specified, then the default configuration is to send to the _app_. + +### 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: +```bash +# Assuming our {app_key} is abcdefghijklmno +# Assuming our {app_secret} is 12345678 +apprise pushed://abcdefghijklmno/12345678 +``` \ No newline at end of file