1.1.1 • Published 8 years ago

ionic-push-server v1.1.1

Weekly downloads
3
License
GNU General Publi...
Repository
github
Last release
8 years ago

Ionic Push REST API via Node.js

NPM version Gitter

Node.js server using Ionic Push REST API to send push notifications on iOS and Android.

See Ionic's REST API documentation for more info on creating/sending push notifications.

Requirements

Example Usage:

var ionicPushServer = require('ionic-push-server');

var credentials = {
    IonicApplicationID : "myID",
    IonicApplicationAPItoken : "myIonicAPItoken"
};

var notification = {
  "tokens": ["your", "device", "tokens"],
  "profile": "my-security-profile",
  "notification": {
    "title": "Hi",
    "message": "Hello world!",
    "android": {
      "title": "Hey",
      "message": "Hello Android!"
    },
    "ios": {
      "title": "Howdy",
      "message": "Hello iOS!"
    } 
};

ionicPushServer(credentials, notification);

Problems? Join the discussion on Gitter or file an issue. Thanks!

License

GNU General Public License v3