Example: Target All Devices for an OS
// do not forget to call Backendless.initApp in the app initialization logic
var channel = "TestChannel",
message = "Hello, world!",
publishOptions = new Backendless.PublishOptions({
headers: {
"android-ticker-text": "Your just got a push notification",
"android-content-title": "This is a notification title",
"android-content-text": "Push notifications are cool"
}
}),
deliveryOptions = new Backendless.DeliveryOptions({
pushBroadcast: "ANDROID|IOS"
});
Backendless.Messaging.publish( channel, message, publishOptions, deliveryOptions )
.then( function( messageStatus ) {
console.log( "message has been published, message status - " + messageStatus.status );
})
.catch( function ( error ) {
console.log( "error - " + error.message );
});