Intercepting notifications
var app = {
bindEvents: function() {
document.addEventListener('batchPushReceived', function(e) {
var pushPayload = e.payload;
// Process the payload as you wish here
}, false);
}
}Parsing the payload
{
"foo": "bar",
"integer": 1,
"boolean": true,
"integers": "[1, 2]",
"parameters": {
"string": "string",
"integer": 1
}
}Differences between Android and iOS
Mobile landings
Last updated

