Questions tagged [deep-linking]

In the World Wide Web, deep linking is the usage of a hyperlink that is expressed as an absolute URL (i.e. http://example.com/path/page), vs. a relative one (i.e. /path/page). Deep links to other websites can be desired or not by the site the link points to.

In the World Wide Web, deep linking is the usage of a hyperlink that is expressed as an absolute URL (i.e. http://example.com/path/page), vs. a relative one (i.e. /path/page). Deep links to other websites can be desired or not by the site the link points to.

3278 questions
1
vote
1 answer

How to build a short Dynamic Link with a Desktop Fallback URL on Android?

I have implemented deep link in my Android App to share content. The problem is on Android I can't find a way to set a Fallback URL when the user open the short link on his desktop. With the Firebase DynamicLink.Builder I can set iOS fallback URL…
Tom
  • 133
  • 2
  • 11
1
vote
1 answer

Deep links in Spotify as the best practice

I am researching the way Spotify registers its custom protocol scheme in macOS Catalina (Spotify URI). Spotify uses custom URIs of the following format (notice the absence of slashes) spotify:track:2nI9BfzCrSWZnCkpF2Nn6O When I take this link and…
Zhenya
  • 174
  • 1
  • 8
1
vote
1 answer

TWA Browser URL Not hiding

I am building up a TWA, i followed all tutorials online BUT cannot hide the upper url bar of chrome :( the asset link file is here https://www.thept.it/.well-known/assetlinks.json I verificated the file with this tool…
1
vote
1 answer

Android Navigation - After deeplink navigation to second fragment, open first fragment in the same graph, but from another navigation graph

In my navigation, I have something like this: When I open registrationFragment (in entry_graph) from a deep-link, and finish registration, I am navigated to main_graph (MainFragment). From there, I can access to menuFragment and click on logOut,…
1
vote
0 answers

Prevent deep link after reopening the backgrounded application

I have an app Android with deep link via Browser. I use the code below inside onCreate() Intent appLinkIntent = getIntent(); if (appLinkIntent != null && appLinkIntent.getData() != null) { Uri data = getIntent().getData(); …
drjam
  • 11
  • 1
1
vote
0 answers

Facebook Deferred Deep Link Android - AppLinks.getAppLinkData returns null

I'm trying to implement Facebook Deferred linking to the Android app. The MainActivity has the following manifest:
1
vote
0 answers

How can I "deeplink" to react web components, even if they're hidden?

I need a way to give the users of my React Web application the ability to deep-link to individual components (marked with a deeplinkKey prop) on any page. A user would go to a URL which includes a component key. The app would then make visible the…
Paul
  • 402
  • 4
  • 12
1
vote
1 answer

Deep Link after GitHub Authentication in Flutter

I want my Login Screen to be shown if a user isn't logged in and the MainPage to be shown if the user is logged in from the device. For GitHub authentication, the browser is being opened and once the authentication is successful, I want the user to…
Devansh Baldwa
  • 129
  • 2
  • 4
  • 14
1
vote
1 answer

Deep link shared from my app to WhatsApp causes my app to be ontop of the opening app (WhatsApp)

I am using Branch.IO for deep linking into my app specific place. I have a chat inside my app that works fine with the deep link. The issue is that when I copy the link to Whatsapp and it opens the app, when closing my app using the home button…
Alon Shlider
  • 1,187
  • 1
  • 16
  • 46
1
vote
1 answer

Google assistant intergration to app without server connection

I am currently creating a remote control app which uses IP control to control devices. I have created this and now I am looking to add a way for you to say for example, "OK Google, Power on 'device' in 'app name'". I have looked at Google's app…
1
vote
0 answers

How to open an app directly from deeplink if app is installed already?

I want to open app directly without giving propmt open with browser or open with app. I followed some links on stackoverflow did exactly what they did but still no luck. Please help to get it fixed.
hiashutoshsingh
  • 980
  • 2
  • 14
  • 41
1
vote
0 answers

Web2App problem using Chrome browser on Android

In our project I needed a deeplink URL for web to mobile redirection. My aim is to redirect someone on the website to a specific mobile application. Unfortunately I can not make an automatic redirection to mobile app using Chrome on Android phones.…
1
vote
1 answer

Redirect Uri not opening the Android App directly in OAuth2 - Deep link is already configured

Requirement: To open a URL and get the response back to the application and redirect the user back to my app since there are other API calls that follow.
sver
  • 866
  • 1
  • 19
  • 44
1
vote
1 answer

What is the best UX of account linking in Google Home App

I'm developing my smart home device. For now, it doesn't have a native app but only a web client. My home-actions work well, but I'm worried about the complexity of adding a new device in the google home app. According to add new device user have…
1
vote
0 answers

Receive failed with error “Software caused connection abort”

I got this error with application connection lost. While redirecting from another app to my app I face this issue.This issue triggered only on live app, getting error with connection lost and while debugging with Xcode getting error but redirected…