Deep Link Types

A deep link is a uniform resource identifier (URI) that links to a specific location within a website, app, or app store. You can use 3 deep link types in eSputnik’s mobile push notifications:

  • Traditional links (app-name://category/screenX),
  • Web deep links (https://www.example.com/products)
  • Universal links (https://www.example.com/products)

Traditional Deep Links

Traditional deep links lead to the app or any of its screens. Add your application name instead of the HTTP protocol to create the traditional deep link. The traditional link may look as follows:

app-name://category/screenX

📘

Important

Assigning the appropriate link to the screen within the application is necessary

If the user doesn’t have the app installed, clicking the deep link leads to an error page. But since you send a deep link in a mobile push, you can be sure that the contact has your application installed.

📘

Note

The operation of the traditional deep links after clicking without app installed depends on the implementation of link processing

Web Deep Links

The click on the web deep link is processed according to the schemes outlined below.

On iOS:

Flowchart of web deep link handling on iOS, showing branching logic for email, messaging apps, and browsers depending on whether the app is installed

On Android:

Flowchart of web deep link handling on Android, showing branching logic for email, messaging apps, and browsers depending on whether the app is installed

Clicks on web deep links in a web browser direct users to a specific section within an app or to a web page if the app is not installed.

Web deep link looks like a web link: https://www.example.com/products

You need to set up opening your app by tapping on www.example.com in your app settings.

📘

Note

Web deep links may be helpful for apps supported by websites, for example — ecommerce. But we don’t recommend using it because of the high risk of loose UTMs or other important parameters, which may be critical for analytics.

Universal Links (on iOS) and Android App Links

Universal Links and Android App Links are back-end frameworks with specific configurations.

They can be used in email campaigns to direct users to a specific section within an app.

🚧

Note

A link in an email button always goes through eSputnik's tracking redirect first. If a link opens a browser instead of the app, Universal Links (iOS) or App Links (Android) aren't configured for your app — this doesn't happen automatically and requires the app-side setup described below.

Flowchart showing Universal Link routing logic based on device type, app installation status, and OS, leading to the app, app store, or desktop web

Android

Guide on the official website: developer.android.com.

  1. Create links to certain app pages.
  2. Add intent filters to incoming links.
  3. Add the association file in a JSON format to your domain (app domain or ad tracker domain).

Test intent (Shell):

adb shell am start
     -W -a android.intent.action.VIEW
     -d <URI> <PACKAGE>

iOS

Guide on the official website: developer.apple.com.

  1. In the app settings, create an association between your app and your domain (app domain or ad tracker domain) via XCode.
  2. Create an association file — a page that contains data in the JSON format that is content in the app.
  3. In app delegate, set up rules for clicks on universal links. A click will redirect to the app if it is installed or to the page in Safari if the app is not installed.
📘

Important

For proper operation, place the association files (manifest.json) on our server.

When creating an association, note that all the links in the campaign will look like this: your.domain.esclick.me/FA25jGSLGXxg. This is a subdomain. When a user clicks such links, they’re redirected to our server. The system registers the link and returns the original link that the user clicks.


Did this page help you?