UNPKG

push_to_urbanairship

Version:

Easy config and push function to Urban Airship phone notifications

30 lines (24 loc) 589 B
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); }); ```