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

React Native Linking to facebook profile only opens current user's profile instead of given URL

I have the following code: Linking.openURL(`fb://profile/?app_scoped_user_id=${user}`) user is taken from the url of the person's profile, so in the url https://facebook.com/ian, user would be ian. No matter who the user is, the facebook app always…
Philip7899
  • 4,599
  • 4
  • 55
  • 114
1
vote
1 answer

Android deep links - allow use of subdomain URLs, with assetlinks.json on organizational domain?

I've used Android App Studio's App Links Assistant to map my URL to MainActivity.kt, and I can click a link in an email to open my app in the simulator. The URL mapping when declared exactly, e.g. https://myorg.com/open-in-app, opens the app as…
tuck1s
  • 1,002
  • 9
  • 28
1
vote
1 answer

Setting Dynamic deeplink with query param With dynamic link in Firebase Using React Native

I want to set the dynamic deep link with query param. For example, Suppose I've got the following information, Let's say for user1 the URL is https://example.com/res/?appId=67abeuusbev&value=55673 this link will be dynamic. i.e. for user2 it can be…
Anil
  • 101
  • 2
  • 15
1
vote
1 answer

What happens if I don't receive dynamicLink with getDynamicLink(intent)?

According to documentation You must call getDynamicLink() in every activity that might be launched by the link, even though the link might be available from the intent using getIntent().getData(). So I already have an deepLink intent handler that…
1
vote
0 answers

How to show your android app icon along with copy paste menus

On Gmail or Google Application when we select some text which contains an URL it shows corresponding app icon along with the copy-paste options. Refer the image for same : (Here pinterest app icon is shown as I select their URL) Similarly I want my…
Astha Garg
  • 1,022
  • 7
  • 21
1
vote
2 answers

how to implement implement deferred deep linking in electron

Trying to find information on how to implement deferred deep linking in electron app but can't find it in the official electron documentation. We have an electronic application. I need the following behavior: when a user tries to open a link of this…
1
vote
1 answer

Firebase REST-API to create shorted dynamic-links with iOS minimum version

I'm using Firebase to generate dynamic links backend side. I need to generate shorted links, so I'm using this approach as suggested into the documentation: https://firebase.google.com/docs/reference/dynamic-links/link-shortener I noticed that, into…
Safari
  • 11,437
  • 24
  • 91
  • 191
1
vote
0 answers

How to open HTTPS URL using Deep Linking - React Native - iOS

I have been using react-native-deep-linking package for my project. My Scenario: In my React Native application, I have a screen called User Registration. Once the user enters all the information including email, the account verification link goes…
Akila Devinda
  • 5,054
  • 3
  • 19
  • 35
1
vote
0 answers

Flutter uni_links (deep linking) does not work on iPhone simulator

I am trying to get deep linking working with my application. I am using uni_links https://pub.dev/packages/uni_links I followed the instruction on the page and got the deep linking working for Android device. But I don't seems to be able to get the…
Janaka
  • 2,505
  • 4
  • 33
  • 57
1
vote
0 answers

Ionic SumUp terminal payment callback not working

I'm working on an Ionic 4 app which have payment process using SumUp I used cordova-plugin-app-launcher plugin to launch the app and it worked very fine, but the problem is the callback doesn't return to my app as they describe in this docs from…
1
vote
1 answer

React-native share on discord

I'm implementing a feature on a project where we want users to be able to share a post on discord. Implementing sharing on facebook or twitter was easy using https://react-native-community.github.io/react-native-share/docs/share-single But there's…
Flow
  • 35
  • 1
  • 7
1
vote
1 answer

Firebase dynamic links and Expo

I'm developing an Expo app and I'm using Firebase dynamic links in order to open the reset password link inside the app. Everything is working perfectly, except that when I test the app on Android, it gives me the option to open the link either in…
ataravati
  • 8,891
  • 9
  • 57
  • 89
1
vote
1 answer

how can I deeplink an app from Google Assistant?

I'm creating a dialogflow agent integrated with Google Assistant. What I'd like to do is to open an app (my app) when a proper intent is matched. I've seen that actions like Youtube, Spotify etc. are able to do that, for example I can tell the…
1
vote
0 answers

How can I convert intent to deep link?

I have sample code as below for Android Java:- public void OpenAppbyName(String appname, String user, String password) { ComponentName componetName = new ComponentName("com.xxx","com.xxx.yyy.zzz"); Intent intent = new Intent();…
Eddy
  • 83
  • 1
  • 1
  • 3
1
vote
2 answers

How to prevent reload on Tizen Public Preview Deeplink?

I'm writing a web app for Tizen Smart TV. One of the required features is implementing the Smarthub Public Preview deeplinking. I have setup the app to open at a specific content when the Public preview tile is clicked. However, I cannot prevent the…
RafaelTSCS
  • 1,234
  • 2
  • 15
  • 36