npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cordova-plugin-marketingcloudsdk

v8.1.0

Published

A Cordova Plugin to access the native Salesforce Marketing Cloud MobilePush SDKs

Downloads

1,992

Readme

Salesforce Marketing Cloud Cordova Plugin

Use this plugin to implement the Marketing Cloud MobilePush SDK for your iOS and Android applications.

Release Notes

Release notes for the plugin can be found here

Installation

1. Add plugin to your application via npm

cordova plugin add cordova-plugin-marketingcloudsdk

Required for iOS

You must have Cocoapods installed for the iOS platform integration. Execute the following commands from terminal to install:

sudo gem install cocoapods
pod repo update

2. Modify your application's config.xml to configure the plugin

<!-- Required -->
<preference name="com.salesforce.marketingcloud.app_id" value="{Marketing Cloud application id}" />
<preference name="com.salesforce.marketingcloud.access_token" value="{Marketing Cloud access token}" />
<preference name="com.salesforce.marketingcloud.tenant_specific_endpoint" value="{URL retrieved from Marketing Cloud adminstration page}" />

<!-- Required - Android Only -->
<platform name="android">
  <preference name="com.salesforce.marketingcloud.notification_small_icon" value="ic_notification" />
</platform>

<!-- Optional -->
<preference name="com.salesforce.marketingcloud.analytics" value="{true|false}" />
<preference name="com.salesforce.marketingcloud.delay_registration_until_contact_key_is_set" value="{true|false}" />

3. Provide FCM credentials

To enable push support for the Android platform you will need to include the google-services.json file.

  1. Download the file from your application's Firebase console and place it in your project's root folder.
  2. Add following to Android element in your config.xml:
<platform name="android">
  <resource-file src="google-services.json" target="app/google-services.json" />
</platform>

4. Enable Rich Notifications

Follow these instructions to enable rich notifications for iOS.

API Reference


MCCordovaPlugin

MCCordovaPlugin.isPushEnabled(successCallback, [errorCallback])

The current state of the pushEnabled flag in the native Marketing Cloud SDK.

Kind: static method of MCCordovaPlugin
See

| Param | Type | Description | | --- | --- | --- | | successCallback | function | | | successCallback.enabled | boolean | Whether push is enabled. | | [errorCallback] | function | |

MCCordovaPlugin.enablePush([successCallback], [errorCallback])

Enables push messaging in the native Marketing Cloud SDK.

Kind: static method of MCCordovaPlugin
See

| Param | Type | | --- | --- | | [successCallback] | function | | [errorCallback] | function |

MCCordovaPlugin.disablePush([successCallback], [errorCallback])

Disables push messaging in the native Marketing Cloud SDK.

Kind: static method of MCCordovaPlugin
See

| Param | Type | | --- | --- | | [successCallback] | function | | [errorCallback] | function |

MCCordovaPlugin.getSystemToken(successCallback, [errorCallback])

Returns the token used by the Marketing Cloud to send push messages to the device.

Kind: static method of MCCordovaPlugin
See

| Param | Type | Description | | --- | --- | --- | | successCallback | function | | | successCallback.token | string | The token used for push messaging. | | [errorCallback] | function | |

MCCordovaPlugin.getDeviceId(successCallback, [errorCallback])

Returns the deviceId used by the Marketing Cloud SDK.

Kind: static method of MCCordovaPlugin
See

| Param | Type | Description | | --- | --- | --- | | successCallback | function | | | successCallback.deviceId | string | The deviceId used by Marketing Cloud messaging. | | [errorCallback] | function | |

MCCordovaPlugin.getAttributes(successCallback, [errorCallback])

Returns the maps of attributes set in the registration.

Kind: static method of MCCordovaPlugin
See

| Param | Type | Description | | --- | --- | --- | | successCallback | function | | | successCallback.attributes | Object.<string, string> | The key/value map of attributes set in the registration. | | [errorCallback] | function | |

MCCordovaPlugin.setAttribute(key, value, [successCallback], [errorCallback])

Sets the value of an attribute in the registration.

Kind: static method of MCCordovaPlugin
See

| Param | Type | Description | | --- | --- | --- | | key | string | The name of the attribute to be set in the registration. | | value | string | The value of the key attribute to be set in the registration. | | [successCallback] | function | | | successCallback.saved | boolean | Whether the attribute value was set in the registration. | | [errorCallback] | function | |

MCCordovaPlugin.clearAttribute(key, [successCallback], [errorCallback])

Clears the value of an attribute in the registration.

Kind: static method of MCCordovaPlugin
See

| Param | Type | Description | | --- | --- | --- | | key | string | The name of the attribute whose value should be cleared from the registration. | | [successCallback] | function | | | successCallback.saved | boolean | Whether the value of the key attribute was cleared from the registration. | | [errorCallback] | function | |

MCCordovaPlugin.addTag(tag, [successCallback], [errorCallback])

Kind: static method of MCCordovaPlugin
See

| Param | Type | Description | | --- | --- | --- | | tag | string | The tag to be added to the list of tags in the registration. | | [successCallback] | function | | | successCallback.saved | boolean | Whether the value passed in for tag was saved in the registration. | | [errorCallback] | function | |

MCCordovaPlugin.removeTag(tag, [successCallback], [errorCallback])

Kind: static method of MCCordovaPlugin
See

| Param | Type | Description | | --- | --- | --- | | tag | string | The tag to be removed from the list of tags in the registration. | | [successCallback] | function | | | successCallback.saved | boolean | Whether the value passed in for tag was cleared from the registration. | | [errorCallback] | function | |

MCCordovaPlugin.getTags(successCallback, [errorCallback])

Returns the tags currently set on the device.

Kind: static method of MCCordovaPlugin
See

| Param | Type | Description | | --- | --- | --- | | successCallback | function | | | successCallback.tags | Array.<string> | The array of tags currently set in the native SDK. | | [errorCallback] | function | |

MCCordovaPlugin.setContactKey(contactKey, [successCallback], [errorCallback])

Sets the contact key for the device's user.

Kind: static method of MCCordovaPlugin
See

| Param | Type | Description | | --- | --- | --- | | contactKey | string | The value to be set as the contact key of the device's user. | | [successCallback] | function | | | successCallback.saved | boolean | Whether the value passed in for contactKey was saved in the registration. | | [errorCallback] | function | |

MCCordovaPlugin.getContactKey(successCallback, [errorCallback])

Returns the contact key currently set on the device.

Kind: static method of MCCordovaPlugin
See

| Param | Type | Description | | --- | --- | --- | | successCallback | function | | | successCallback.contactKey | string | The current contact key. | | [errorCallback] | function | |

MCCordovaPlugin.enableLogging([successCallback], [errorCallback])

Enables verbose logging within the native Marketing Cloud SDK.

Kind: static method of MCCordovaPlugin
See

| Param | Type | | --- | --- | | [successCallback] | function | | [errorCallback] | function |

MCCordovaPlugin.disableLogging([successCallback], [errorCallback])

Disables verbose logging within the native Marketing Cloud SDK.

Kind: static method of MCCordovaPlugin
See

| Param | Type | | --- | --- | | [successCallback] | function | | [errorCallback] | function |

MCCordovaPlugin.setOnNotificationOpenedListener(notificationOpenedListener)

Kind: static method of MCCordovaPlugin
Since: 6.1.0

| Param | Type | | --- | --- | | notificationOpenedListener | function | | notificationOpenedListener.event | MCCordovaPlugin~notificationOpenedCallback |

MCCordovaPlugin.setOnUrlActionListener(urlActionListener)

Kind: static method of MCCordovaPlugin
Since: 6.3.0

| Param | Type | | --- | --- | | urlActionListener | function | | urlActionListener.event | MCCordovaPlugin~urlActionCallback |

MCCordovaPlugin.logSdkState([successCallback], [errorCallback])

Instructs the native SDK to log the SDK state to the native logging system (Logcat for Android and Xcode/Console.app for iOS). This content can help diagnose most issues within the SDK and will be requested by the Marketing Cloud support team.

Kind: static method of MCCordovaPlugin
See

Since: 6.3.1

| Param | Type | | --- | --- | | [successCallback] | function | | [errorCallback] | function |

MCCordovaPlugin.track(event)

Method to track events, which could result in actions such as an InApp Message being displayed.

Kind: static method of MCCordovaPlugin
See

| Param | Type | Description | | --- | --- | --- | | event | CustomEvent | EngagementEvent | IdentityEvent | SystemEvent | CartEvent | OrderEvent | CatalogObjectEvent | The event to be tracked. |

MCCordovaPlugin.setAnalyticsEnabled(enabled, [successCallback], [errorCallback])

Enables or disables analytics in the native Marketing Cloud SDK.

Kind: static method of MCCordovaPlugin

| Param | Type | Description | | --- | --- | --- | | enabled | boolean | Whether analytics should be enabled. | | [successCallback] | function | | | [errorCallback] | function | |

MCCordovaPlugin.isAnalyticsEnabled(successCallback, [errorCallback])

Checks if analytics are enabled in the native Marketing Cloud SDK.

Kind: static method of MCCordovaPlugin

| Param | Type | | --- | --- | | successCallback | function | | [errorCallback] | function |

MCCordovaPlugin.setPiAnalyticsEnabled(enabled, [successCallback], [errorCallback])

Enables or disables PI analytics in the native Marketing Cloud SDK.

Kind: static method of MCCordovaPlugin

| Param | Type | Description | | --- | --- | --- | | enabled | boolean | Whether PI analytics should be enabled. | | [successCallback] | function | | | [errorCallback] | function | |

MCCordovaPlugin.isPiAnalyticsEnabled(successCallback, [errorCallback])

Checks if PI analytics are enabled in the native Marketing Cloud SDK.

Kind: static method of MCCordovaPlugin

| Param | Type | | --- | --- | | successCallback | function | | [errorCallback] | function |

MCCordovaPlugin~notificationOpenedCallback : function

Kind: inner typedef of MCCordovaPlugin

| Param | Type | Description | | --- | --- | --- | | timeStamp | number | Time since epoch when the push message was opened. | | values | Object | The values of the notification message. | | values.alert | string | The alert text of the notification message. | | [values.title] | string | The title text of the notification message. | | [values.url] | string | The url associated with the notification message. This can be either a cloud-page url or an open-direct url. | | values.type | string | Indicates the type of notification message. Possible values: 'cloudPage', 'openDirect' or 'other' |

MCCordovaPlugin~urlActionCallback : function

Kind: inner typedef of MCCordovaPlugin

| Param | Type | Description | | --- | --- | --- | | url | string | The url associated with the action taken by the user. |


Capacitor or Ionic integaration

Follow Capacitor guide for integrating with Capacitor or Ionic apps.

3rd Party Product Language Disclaimers

Where possible, we changed noninclusive terms to align with our company value of Equality. We retained noninclusive terms to document a third-party system, but we encourage the developer community to embrace more inclusive language. We can update the term when it’s no longer required for technical accuracy.