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

Deep Link opens one instance of app only?

When the app is closed, the deep link works perfectly. But if the app is already opened, the deeplink just opens the app, rather than opening that link. MainActivity.java file: public class MainActivity extends Activity{ private ProgressBar…
Ritesh
  • 11
  • 3
1
vote
1 answer

How can I deep link into a Vue.js project on GitHub Pages?

I have a practise repository in GitHub (see https://jdomleo.github.io/vue-deploy-practise). Navigate to "About" in the navigational list at the top: You will see in the URL, it has appened /about, as expected. However, if I give people the URL…
1
vote
0 answers

DeepLinks and proper way to deal with 404

so I want to have some DeepLinks on my webpage that fire up a mobile app I created on my mobile device using Unity. The DeepLinks are constructed in a way: myapp://view?itm=356723 Now, if my mobile phone has the app installed, it will launch the…
goetzmoritz
  • 453
  • 1
  • 5
  • 23
1
vote
0 answers

iOS Deep Links with Enterprise Distribution

Use Case: We have an iOS Application we deliver to the Apple App Store for standard users. In it, we have built in deep linking that works when downloaded from the store. For internal testing/QA, we want to use our Enterprise license and make the…
Brant
  • 1,764
  • 11
  • 18
1
vote
1 answer

Create deep link for multiple applications

I need to create deep link consumable by multiple applications. This works in Duolingo: In Duolingo you can send referral link by SMS, Email, copy to clipboard etc.. This link works fine for opening a Play Store
Lopuch
  • 664
  • 2
  • 5
  • 20
1
vote
1 answer

Every time show error message when redeemRewards function call in branch.io

I am developing an iPhone application with integrating Branch.io in which i am using Referrals functionality. According to Referrals Documentation i've done almost all steps. when i m trying to load rewards and redeem rewards then error message…
Sham Dhiman
  • 1,348
  • 1
  • 21
  • 59
1
vote
1 answer

App linking is not working as expected in Android

We want an app link for our application. We have set intent-filter in manifest as below:
Maulik patel
  • 1,551
  • 8
  • 22
  • 44
1
vote
1 answer

Nav Component implicit deeplink not working with res string

When i add a deeplink like so The uri is ignored, if i hard code it in place it works fine. Debugging and checking the actual deeplink on the Node…
1
vote
2 answers

REACT_NATIVE - Handle DeepLink from automatic side-service redirection web URL's

I have this use case : -> a Website OR random native application on my phone, doing a process on it, and at the end of the flow, this application is redirecting to : https://my-domain/com/key=value&otherKey=value.com The problem is, the universal…
Mayoul
  • 626
  • 10
  • 24
1
vote
2 answers

Universal linking with website by using swift

I using Universal-linking in my application, For that, I make the following apple-app-site-association file, like with the following code. I place this file into server please find here:- http://dev.2ULaundry.com/apple-app-site-association I add…
1
vote
0 answers

Android - How to Deep Link into App with some URL and then open the same URL in-app native browser without using WebView?

I want to click on a URL I received in my email (ex. https://example.com) and have that open my app, then launch that URL in a browser within my app. (ChromeCustomTabs would have been nice, but it launches my app in an endless loop, due to…
Sampson
  • 662
  • 6
  • 17
1
vote
0 answers

The open native mobile app from the browser (iOS 13)

I have a code on the website which was checking the user agent and depending on OS to do the navigation into a native app. function openPage(webUrl, appUrl) { var loadedAt = +new Date; var interval = setInterval(function () { var res…
Taras Kovalenko
  • 2,323
  • 3
  • 24
  • 49
1
vote
1 answer

*React-Native* | Linking => canOpenURL(url) with unknown URL?

I have this piece of code: Linking.canOpenURL(url) .then((supported) => { if (!supported) { console.log("Can't handle url: " + url); return false; …
Mayoul
  • 626
  • 10
  • 24
1
vote
0 answers

Is there any official formatting for the URL fragment?

In the project I'm working on part the URL fragment is used to update the view. But if the view is updated by the URL fragment the vertical anchor position is lost. Is there an official way to format a URL fragment to contain a view and anchor? Or…
1.21 gigawatts
  • 16,517
  • 32
  • 123
  • 231
1
vote
3 answers

How to make links in rails hashed?

in my rails app I'm using jQuery BBQ for hashchange deeplinking etc... Here are my existing links in rails: <%= link_to('View on Site ', project_topic_url(@project.id, @topic, :only_path => false),) %> I have this working in a user_mailer that gets…
AnApprentice
  • 108,152
  • 195
  • 629
  • 1,012
1 2 3
99
100