Using deep linking in push messages, providing your app supports deep linking, is simple and easy.
All you need is to send the deep link with the push message. To do so, please proceed with the following:
1. Create a push message .
2. Once arriving at the "Push Text" page, Locate the "Extra Fields" area.
3. Use the following commands as key and enter the desired values.
Apx_dpl: open url within the app browser
Apx_url : open url within the app(webview) & outside app (based on the parameter)
apx_aid : open play store, if play store installed in device
4. For your consideration, here are use cases:
* Please note that deep linking is supported from iOS SDK V2.3 and above, and Android SDK V2.0 and above.
Example:
To use these option all you need is to use the push extra fields in the push editor as follows:
URL scheme, WithIn app browser - ability to define a URL (if the app supports URL scheme) which will open within the app when user opens the app from a push message.
Key:apx_dpl
Value: URL
URL scheme, WithIn app(web view) & outside app- ability to define a URL which open in WebView(within app) & phone browser(outside app) based on the following parameter.
apx_open_url_internal add this in string file with “Yes” or “No” value.
If No: Open outside app otherwise in webview
Key:apx_url
Value: URL
Open Specific app Google play store - ability to redirect user to Google play store app, if play store application is installed in targeted device.
Key:apx_aid
Value: package name
Note: In Android when user click on Push Notification, activity is re-launched while at the top of the activity stack instead of a new instance of the activity being started, onNewIntent() will be called on the existing instance with the Intent that was used to re-launch it. Otherwise If the activity is not in stack then new instance of activity will launch.
Test coverage:
This test covers sending a Deep Link using a Push notification and having that link specific app page open once clicking the Push notification.
...