This plugin makes it easy to integrate your Cordova based mobile app with the Responsys SDK.
- Cordova CLI >= 12.0.0
If using Ionic,
- Ionic CLI >= 7.2.0
- Ionic Framework >= 8.3.1 (@ionic/angular)
- Android SDK Tools >= 26.1.1
- Cordova Android >= 13.0.0
- iOS 12 or later
- Cordova iOS >= 7.1.1
Before installing the plugin, you must setup your app to receive push notifications.
- Get FCM Credentials
- Log in to the Responsys Mobile App Developer Console and enter your FCM credentials (Project ID and Server API Key) for your Android app.
- Download the
pushio_config.json
file generated from your credentials and include it in your project'splatforms/android/src/main/assets
folder. - Copy
oracle-cx-mobile-base-7.0.1.aar
and place it in the project'splatforms/android/src/main/libs
folder.
NOTE: Copy
oracle-cx-mobile-location-7.0.0.aar
to support Location feature in Android.
- Generate Auth Key
- Log in to the Responsys Mobile App Developer Console and enter your Auth Key and other details for your iOS app.
- Download the
pushio_config.json
file generated from your credentials. - Open the Xcode project workspace in your
platforms/ios
directory of cordova app. - Drag and Drop your
pushio_config.json
in Xcode project. - Select the root project and Under Capabilites add the "Push Notifications" and "Background Modes".
- Download and copy
CX_Mobile_SDK.xcframework
and place it in the pluginPATH_TO_pushiomanager-cordova-plugin_DIRECTORY/frameworks/
folder before adding plugin to project.
NOTE: Copy OracleCXLocationSDK.xcframework to support Location feature in iOS and add related Privacy Location descriptions in Info.plist, refer this for more info Location Descriptions
Download the plugin,
git clone https://github.com/oracle/cordova-plugin-pushiomanager
For iOS - Copy
CX_Mobile_SDK.xcframework
and place it in the pluginPATH_TO_cordova-plugin-pushiomanager_DIRECTORY/frameworks/
folder before adding plugin to project.
The plugin can be installed with the Cordova CLI,
cordova plugin add PATH_TO_pushiomanager-cordova-plugin_DIRECTORY
For Ionic,
ionic cordova plugin add PATH_TO_pushiomanager-cordova-plugin_DIRECTORY
-
Open the
AndroidManifest.xml
file located atplatforms/android/src/main
and add the following,-
Permissions above the
<application>
tag,<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="${applicationId}.permission.PUSHIO_MESSAGE" /> <uses-permission android:name="${applicationId}.permission.RSYS_SHOW_IAM" /> <permission android:name=".permission.PUSHIO_MESSAGE" android:protectionLevel="signature" /> <permission android:name="${applicationId}.permission.RSYS_SHOW_IAM" android:protectionLevel="signature" />
-
Intent-filter for launching app when the user taps on a push notification. Add it inside the
<activity>
tag ofMainActivity
,<intent-filter> <action android:name="${applicationId}.NOTIFICATIONPRESSED" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter>
-
(Optional) Intent-filter for Android App Links setup. Add it inside the
<activity>
tag ofMainActivity
,<intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:host="@string/app_links_url_host" android:pathPrefix="/pub/acc" android:scheme="https" /> </intent-filter>
-
Add the following code inside
<application>
tag,<receiver android:enabled="true" android:exported="false" android:name="com.pushio.manager.PushIOUriReceiver" tools:node="replace"> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <data android:scheme="@string/uri_identifier" /> </intent-filter> </receiver> <activity android:name="com.pushio.manager.iam.ui.PushIOMessageViewActivity" android:permission="${applicationId}.permission.SHOW_IAM" android:theme="@android:style/Theme.Translucent.NoTitleBar"> <intent-filter tools:ignore="AppLinkUrlError"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.DEFAULT" /> <data android:scheme="@string/uri_identifier" /> </intent-filter> </activity>
-
-
Open the
strings.xml
file located atplatforms/android/src/main/res/values
and add the following properties,-
Custom URI scheme for displaying In-App Messages and Rich Push content,
<string name="uri_identifier">pio-YOUR_API_KEY</string>
You can find the API key in the
pushio_config.json
that was placed inplatforms/android/app/src/main/assets
earlier during setup. -
(Optional) If you added the
<intent-filter>
for Android App Links in the steps above, then you will need to declare the domain name,<string name="app_links_url_host">YOUR_ANDROID_APP_LINKS_DOMAIN</string>
-
-
For In-App Messages and Rich Push Content follow the below steps :
-
To Enable Custom URI scheme for displaying In-App Messages and Rich Push content follow the Step 1. You don't need to add the code. You can find the API key in the
pushio_config.json
that was placed in your Xcode project earlier during setup. -
Follow Step 2 to add the reuired capabilites in your Xcode project for In-App messages. You don't need to add the code.
-
-
For Media Attachments you can follow the following guide. Copy and paste the code provided in guide in respective files.
-
For Carousel Push you can follow the following guide. Copy and paste the code provided in guide in respective files.
The plugin can be accessed in JS code using the namespace cordova.plugins.PushIOManager
. The following code samples use a shorthand - PushIOManager
for the namespace.
-
Configure the SDK,
PushIOManager.configure("pushio_config.json", (success) => { }, (error) => { });
-
Once the SDK is configured, register the app with Responsys,
PushIOManager.registerApp(true, (success) => { }, (error) => { });
-
Associate an app installation with a user (usually after login),
PushIOManager.registerUserId("[email protected]", (success) => { }, (error) => { });
-
When the user logs out,
PushIOManager.unregisterUserId((success) => { }, (error) => { });
User actions can be attributed to a push notification using,
PushIOManager.trackEngagement(PushIOManager.engagementType.PUSHIO_ENGAGEMENT_METRIC_INAPP_PURCHASE,
(success) => {
}, (error) => {
});
In-App Message (IAM) are displayed in a popup window via system-defined triggers like $ExplicitAppOpen
or custom triggers. IAM that use system-defined triggers are displayed automatically.
IAM can also be displayed on-demand using custom triggers.
-
Your marketing team defines a custom trigger in Responsys system and shares the trigger-event name with you.
-
Marketer launches the campaign and the IAM is delivered to the device via push or pull mechanism (depending on your Responsys Account settings)
-
When you wish to display the IAM popup, use,
PushIOManager.trackEvent(custom_event_name, properties, (success) => { }, (error) => { });
-
Get the Message Center messages list using,
PushIOManager.fetchMessagesForMessageCenter("Primary", (response) => { }, (error) => { });
-
If any message has a rich-content (HTML) then call,
PushIOManager.fetchRichContentForMessage(messageID, (response) => { // `response` is the HTML content }, (error) => { });
Remember to store these messages, since the SDK cache is purgeable.
-
If you wish to receive callback when new messages are available,
PushIOManager.onMessageCenterUpdated((messageCenters) => { for (var i = 0; i < messageCenters.length; i++) { PushIOManager.fetchMessagesForMessageCenter(messageCenters[i], (response) => { }, (error) => { }); } }, (error) => { });
If your app is setup to monitor geofence and beacons, you can use the following APIs to record in Responsys when a user enters/exits a geofence/beacon zone.
PushIOManager.onGeoRegionEntered(geoRegion, (response) => {}, (error) => {});
PushIOManager.onGeoRegionExited(geoRegion, (response) => {}, (error) => {});
PushIOManager.onBeaconRegionEntered(beaconRegion, (response) => {}, (error) => {});
PushIOManager.onBeaconRegionExited(beaconRegion, (response) => {}, (error) => {});
Preferences are used to record user-choices for push notifications. The preferences should be pre-defined in Responsys before being used in your app.
-
Declare the preference beforehand in the app,
PushIOManager.declarePreference(key, label, preferenceType, (response) => { }, (error) => { });
-
Once a preference is declared successfully, you may save the preference using,
PushIOManager.setPreference(key, value, (response) => { }, (error) => { });
Do not use this as a key/value store as this data is purgeable.
If you have access to My Oracle Support, please raise a request here, otherwise open an issue in this repository.
This project welcomes contributions from the community. Before submitting a pull request, please review our contribution guide
Please consult the security guide for our responsible security vulnerability disclosure process
Copyright (c) 2024 Oracle and/or its affiliates and released under the Universal Permissive License (UPL), Version 1.0.
Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.