I am building an app that sends push notifications to IOS and android phones and on searching i found "push-notification" it allows Cross-platform Push Notifications my problem is how do we get the iosToken and the androidToken for the users devices? If anyone has used this before i would appreciate a push in the right direction. Thanks in advance and you can find my code below.
var PushNotification = require('push-notification');
var DeviceType = PushNotification.DeviceType;
var path = require('path');
// APN: cert.pem, key.pem should be configured
// GCM: configure console to generate gcm.sender
PushNotification.init({
apn: {
cert: path.resolve('./keys/cert.pem'),
key: path.resolve('./keys/key.pem')
},
gcm: {
apiKey: 'gcm-api-key'
}
});
var iosToken = 'iphone-device-token';
var androidToken = 'android-device-token';
var message = 'some text to push...';
var badge = null;
var sound = null;
var payload = null;
// send a notification to a single device
PushNotification.pushSingle(DeviceType.IOS, iosToken, message, badge, sound, payload);
PushNotification.pushSingle(DeviceType.ANDROID, androidToken, message, badge, sound, payload);