0.0.2 • Published 10 years ago

push_to_urbanairship v0.0.2

Weekly downloads
11
License
-
Repository
github
Last release
10 years ago

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);
});