Skip to content

Instantly share code, notes, and snippets.

@djmeph
Last active August 29, 2015 14:05
Show Gist options
  • Save djmeph/81d00f5dfdb0e01918b3 to your computer and use it in GitHub Desktop.
Save djmeph/81d00f5dfdb0e01918b3 to your computer and use it in GitHub Desktop.
//Apigee Reg
var apigee = {
orgName: "ORG_NAME",
appName: "APP_NAME",
notifier: "NOTIFIER",
senderID: "SENDER_ID",
init: function () {
document.addEventListener("deviceReady", this.deviceReady, false);
},
deviceReady: function () {
this.client = new Apigee.Client({ orgName: this.orgName, appName: this.appName });
this.pushNotification = window.plugins.pushNotification;
this.pushNotification.register(
function () {}, //success
function () {
console.log("Error: apigee.pushNotification.register");
},
{senderID: this.senderID, ecb: "apigee.onNotification"}
);
},
onNotification: function (e) {
switch (e.event) {
case 'registered':
this.register(e.regid);
break;
case 'message':
window.plugin.notification.local.add({ message: e.payload.data });
break;
case 'error':
console.log("Error: apigee.onNotification - error");
break;
default:
console.log("Error: apigee.onNotification - default");
break;
}
},
register: function (token) {
if (token) {
this.client.registerDevice({ notifier: this.notifier, deviceToken: token }, function (error, result) {
if (error) console.log("Error: apigee.client.registerDevice");
});
}
}
}
apigee.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment