Ionic-Push-Notification-NodeJS-Server
Ionic-Push-Notification-NodeJS-Server copied to clipboard
NodeJS Server for Ionic Push REST API
Ionic Push REST API via Node.js
Node.js server using Ionic Push REST API to send push notifications on iOS and Android.
Requirements
- Node.js
- Ionic App that is setup for push notifications
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 or file an issue. Thanks!