Phonegap 3.0.0 plugin for Parse.com push service
Using Parse.com's REST API for push requires the installation id, which isn't available in JS
This plugin exposes the four native Android API push services to JS:
Add the plugin to your res/xml/config.xml:
<feature name="org.apache.cordova.core.ParsePlugin">
<param name="android-package" value="org.apache.cordova.core.ParsePlugin" />
</feature>
<script type="text/javascript" src="cdv-plugin-parse.js"></script>
<script type="text/javascript>
parsePlugin.getInstallationId(function(id) {
alert(id);
}, function(e) {
alert('error');
});
parsePlugin.getSubscriptions(function(subscriptions) {
alert(subscriptions);
}, function(e) {
alert('error');
});
parsePlugin.subscribe('SampleChannel', function() {
alert('OK');
}, function(e) {
alert('error');
});
parsePlugin.unsubscribe('SampleChannel', function(msg) {
alert('OK');
}, function(e) {
alert('error');
});
</script>
Phonegap > 3.0.0