parse push notification
[android, ios, wp8] [crodova cli] [xdk] [cocoon] [phonegap build service]
Requires parse account http://parse.com
Parse android SDK (v1.9.4) Parse ios SDK (v1.7.5) Parse wp8 SDK (v1.5.3)
This is an open source cordova plugin.
12.17.2015 FORKED FROM CRANBERRYGAME
https://software.intel.com/en-us/intel-xdk - Download XDK - XDK PROJECTS - [specific project] - CORDOVA 3.X HYBRID MOBILE APP SETTINGS - PLUGINS - Third Party Plugins - Add a Third Party Plugin - Get Plugin from the Web -
Name: parsepushnotification
Plugin ID: cordova-plugin-pushnotification-parsepushnotification
[v] Plugin is located in the Apache Cordova Plugins Registry
Configuring your App ID for Development Push Notifications
https://www.parse.com/tutorials/ios-push-notifications
How do I make a .p12
http://appfurnace.com/2015/01/how-do-i-make-a-p12-file/
var applicationId = "REPLACE_THIS_WITH_YOUR_APPLICATION_ID";
var clientKey = "REPLACE_THIS_WITH_YOUR_CLIENT_KEY";
document.addEventListener("deviceready", function(){
window.parsepushnotification.setUp(applicationId, clientKey);
//registerAsPushNotificationClient callback (called after setUp)
window.parsepushnotification.onRegisterAsPushNotificationClientSucceeded = function() {
alert('onRegisterAsPushNotificationClientSucceeded');
};
window.parsepushnotification.onRegisterAsPushNotificationClientFailed = function() {
alert('onRegisterAsPushNotificationClientFailed');
};
//subscribe callback
window.parsepushnotification.onSubscribeToChannelSucceeded = function() {
alert('onSubscribeToChannelSucceeded');
};
window.parsepushnotification.onSubscribeToChannelFailed = function() {
alert('onSubscribeToChannelFailed');
};
//unsubscribe callback
window.parsepushnotification.onUnsubscribeSucceeded = function() {
alert('onUnsubscribeSucceeded');
};
window.parsepushnotification.onUnsubscribeFailed = function() {
alert('onUnsubscribeFailed');
};
}, false);
//
window.parsepushnotification.subscribeToChannel('Game');//parameter: channel
//
window.parsepushnotification.unsubscribe('Game');//parameter: channel
example/basic/index.html
example/advanced/index.html
You can also run following test apk. https://dl.dropboxusercontent.com/u/186681453/pluginsforcordova/parsepushnotification/apk.html
Plugin For Cordova
http://cranberrygame.github.io?referrer=github