ionic-push-server

1.1.1 • Public • Published

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

Package Sidebar

Install

npm i ionic-push-server

Weekly Downloads

3

Version

1.1.1

License

GNU General Public License v3

Last publish

Collaborators

  • benrondeau