https://github.com/appzer/pimatic-pushsafer
Plugin to send Pushsafer notifications in pimatic
https://github.com/appzer/pimatic-pushsafer
android ios ipad iphone notification notifications pimatic push push-notifications pushnotification pushnotifications pushsafer win10 windows
Last synced: 3 months ago
JSON representation
Plugin to send Pushsafer notifications in pimatic
- Host: GitHub
- URL: https://github.com/appzer/pimatic-pushsafer
- Owner: appzer
- License: other
- Created: 2016-09-11T20:16:14.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2023-03-11T16:26:25.000Z (over 3 years ago)
- Last Synced: 2025-10-05T00:43:03.695Z (9 months ago)
- Topics: android, ios, ipad, iphone, notification, notifications, pimatic, push, push-notifications, pushnotification, pushnotifications, pushsafer, win10, windows
- Language: CoffeeScript
- Homepage: http://www.pushsafer.com
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
pimatic-pushsafer
=======================
Download: [https://github.com/appzer/pimatic-pushsafer](https://github.com/appzer/pimatic-pushsafer)

A plugin for sending [pushsafer.com](https://www.pushsafer.net/) notifications in pimatic.
Forked from and original created by: thexperiments
Pushsafer make it easy and safe to get push-notifications in real time on your
- Android device
- iOS device (incl. iPhone, iPad, iPod Touch)
- Windows Phone & Desktop
- Browser (Chrome, Firefox, Edge, Opera & Yandex)
- Telegram
Configuration
-------------
You can load the backend by editing your `config.json` to include:
{
"plugin": "pushsafer",
"privatekey": "Your20CharPrivateKey"
}
in the `plugins` section. For all configuration options see
[pushsafer-config-schema](pushsafer-config-schema.coffee)
Currently you can send pushsafer notifications via action handler within rules.
Example:
--------
titleTokens, messageTokens, sound, device, icon, vibration
if it is 08:00 push title:"Good morning!" message:"Time to get out of bed!" sound:"11" device:"312" icon:"4" iconcolor:"#00FF00" vibration:"2" url:"https://www.pushsafer.com" urltitle:"Open Pushsafer.com" time2live:"1000" priority:"2" retry:"60" expire:"600" confirm:"10" answer:"1" answeroptions:"yes|no|maybe" answerforce:"1"
in general: if X then push
title:"title of the push notification" message:"message of the notification" sound:"11" device:"312" icon:"4" iconcolor:"#FF0000" vibration:"2" url:"https://www.pushsafer.com" urltitle:"Open Pushsafer.com" time2live:"60" priority:"2" retry:"60" expire:"600" confirm:"10" answer:"1" answeroptions:"yes|no|maybe" answerforce:"1"
Find API description here at [pushsafer api](https://www.pushsafer.com/de/pushapi) to set up your push notification!