Skip to content

Latest commit

 

History

History
56 lines (47 loc) · 1.68 KB

README.md

File metadata and controls

56 lines (47 loc) · 1.68 KB

Phonegap Parse.com Plugin

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:

Configuration

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>

Usage

<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>

Compatibility

Phonegap > 3.0.0