Pusher: Personal notifications for Android
You must send 3 fields:
Title - Your notification title.
Message - Your notification title.
device - device id, you will see it when you tun the app (PUSH_XXXX);
e.g, send a message with this jquery code:
var data = {"title": "Here put title", "message":"Here put detailed message 2", "device":"PUSH_XXXX"};
$.post( "http://ghk.mobi/push/api/push", JSON.stringify(data),
function(response) {
console.log(response);
});