Commit 818b8e7
Dictionary (New Word): Deep Link (#279)
# Word
#### Deep Link
# Meaning/Definition
A deep link is a URI (URL) that encodes a destination inside an app or
site—identifying a specific piece of content or a specific state (e.g.,
a product detail view, a prefilled checkout, a tab + filter)—so the user
can land there directly from an external source instead of starting at
the homepage.
In mobile, deep links typically use either a custom scheme
(myshopapp://...) or a web URL that can open the app (“universal/app
links”), with a fallback to the website/app store if the app isn’t
installed.
Examples:
- Link in an email:
`https://shop.example.com/products/12345?ref=newsletter`
- If the app is installed, tapping it opens the app to Product 12345
(optionally showing the “newsletter” promo/referrer).
- If the app isn’t installed, it opens the same product page on the web
(or can route to the app store).
---------
Co-authored-by: Olabode Lawal-Shittabey <babblebey@gmail.com>1 parent 29e904a commit 818b8e7
1 file changed
Lines changed: 12 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
0 commit comments