Deferred deep linking

Deferred deep linking is one aspect of mobile deep linking. It describes the principle of deep linking into an app that is not yet installed. This implies that clicking (or otherwise invoking) the deep link causes:

  1. An app store to open to enable the end-user to install the linked-to app
  2. Once the app is installed, the link is invoked with its original URL and parameters so that the newly installed app can handle the invocation.

A common use case is to drive installs; linking to functionality in a not-yet-installed app provides the user with an incentive to install it.

Platform-provided support

While there is currently no industry standard for deferred deep linking, various platform providers offer differing levels of support:

Alternatives to Platform-provided support

For the platforms where there is no real support (the majority), the only option is a "roll-your-own" approach. The general approach is to provide a mechanism where the URL and its parameters can be passed "around" the app store; ie. received from the source (linking) application (the "click"), stored, and then passed to the destination (linked-to) application once it's installed and run.[4]

The major technical challenge to solve in this approach is identifying which click caused which install so that the correct URL and parameters can be passed to newly-installed app. Tying clicks to installs is a family of technologies known as Attribution.

References

  1. "Enabling Deep Links for App Content | Android Developers". Developer.android.com. Retrieved 2015-06-20.
  2. "Android Surpasses iOS In Revenue, If China's Android App Stores Are Combined". TechCrunch.com. 2015-04-27. Retrieved 2015-06-20.
  3. "Deep linking for mobile app install ads". Developers.facebook.com. Retrieved 2015-06-20.
  4. St.Derrick. "How to make deferred deep linking". Retrieved 2016-08-15.
This article is issued from Wikipedia - version of the 8/16/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.