Skip to content

Instantly share code, notes, and snippets.

@a-bx
Created September 3, 2012 19:07
Show Gist options
  • Save a-bx/3612466 to your computer and use it in GitHub Desktop.
Save a-bx/3612466 to your computer and use it in GitHub Desktop.
APS - Sending a notification
var noti = new apns.Notification();
var device = new apns.Device("DEVICE-TOKEN");
noti.sound = "notification.caf";
noti.alert = "Message here!!";
noti.payload = { }; //object with data if you want.
noti.device = device;
apnsConnection.sendNotification(noti);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment