push_to_urbanairship
v0.0.2
Published
Easy config and push function to Urban Airship phone notifications
Downloads
4
Readme
pushToUrbanAirship
Mobile push notifications using UrbanAirship.
npm install push_to_urbanairship
##Example:
var auth= {
key: "app key",
master:"app master key"
},
pushToUA = require('push_to_urbanairship')(auth),
sampleToken= "your sample ios device_token";
pushToUA( {
"audience" : {
"device_token" : sampleToken
},
"notification" : {
"alert" : "Hello - from vlad again - tell me if u get this plz2."
},
"device_types" : "all"
} , function(err, resp, body){
console.log(body);
});