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
0 answers

Deep Linking Working while Testing But not in Production, Android Cordova Webview

I have implemented deeplinking in a cordova webview application using cordova-plugin-universal-links. Any link with my website address does open up my app. While testing the deeplink opens up the exact URL in my app, but in production the exact URL…
1
vote
1 answer

How to Pass query parameters from AppsFlyer link to Deep Links/Universal Links

I have a component which requires users to input a parameter e.g. their phone numbers. The deep link and universal link inside my apps can accept the parameter e.g. applinks:www.mywebsite.com/profiles?phone=. In order to serve both…
Stanley Stein
  • 397
  • 1
  • 3
  • 17
1
vote
0 answers

Firebase dynamic links not working as expected

I create a firebase dynamic link using Rest API, like below const parametersexample = { longDynamicLink: …
1
vote
1 answer

iOS - Test getting Facebook deferred deep link

I want to get deferred deep link after sending it to my app via "Test App Link" FB testing tool. I've provided AppID in the Xcode project settings and implemented fetchDeferredAppLick method in the AppDelegate file. As well as I set all necessary…
Veronika Babii
  • 324
  • 5
  • 18
1
vote
1 answer

React Native: Opening a push notification at a specific deeplink URL

I'm trying to open an app at a specific screen, from a push notification. My understanding is that I use a "deep link" to do this. I've set up react-navigation to handle the deep link (and AndroidManifest.xml & appDelegate.m), and can open the deep…
jam3
  • 129
  • 5
1
vote
0 answers

Deep linking not working for routes - React Native

My app should open when the following deep link is executed: thekitty://pending-invitation/tokenhere In order to do it, I followed the instructions from this lib https://github.com/luisfcofv/react-native-deep-linking And the modifications to…
Laura Beatris
  • 1,782
  • 7
  • 29
  • 49
1
vote
0 answers

Deep-links redirects with hyphen don't work on android

I have a deeplink embedded in my app with a hyphen such as https://www.myapp.com/first-page?leads_to=First_Page It doesn't seem to work with hyphen in the "first-page" , but does work without first-page in there. Is this a known issue with deeplinks…
Angela Heely
  • 419
  • 2
  • 4
  • 13
1
vote
0 answers

Can a deeplink placed in a website, after completion of action in invoked native app, return a value to a website opened in a browser?

I know in case of native apps, an app A that got invoked via a deeplink in another app B can return a value to the calling app B. But, can an app, invoked from a deeplink, placed in a website that's open in browser, return a value to the website/API…
1
vote
1 answer

Problem with tensorflow runtime reshaping

I am trying to make a spatio temporal graph convolutional network where a gcn layer is sandwiched between two tomporal cnn layer. The code is following: inputs = Input(shape=(train_x.shape[1],train_x.shape[2],train_x.shape[3]), batch_size=None) #…
Swakshar Deb
  • 125
  • 4
1
vote
1 answer

Ios url redirect to the app on click using url schemes

I have a email to reset password, on click on that email it should redirect to my app installed on my iphone. I am using url schemes for that. How to direct that reset url to the app to reset password controller.
Manish Kumar
  • 997
  • 2
  • 13
  • 30
1
vote
0 answers

Deep link crashes when app is not in background

for some reason my deep link keeps crashing every time I click it. and this only happens when my application is not running in the background. it impossible for me to get the error message because it only happens when the app is not running. I…
1
vote
3 answers

android deeplinking - the first path prefix is dynamic, but the second not

I have a url, e.g. https://www.mobilePhoneSystem.com/{user}/registerDate/{date}. So the {user} path-prefix is dynamic. I need to handle ONLY the deeplinks, that contains registerDate. I wrote in my manifest something like this
Hayk Mkrtchyan
  • 2,835
  • 3
  • 19
  • 61
1
vote
0 answers

Why app linking is not working in Android?

Everything in the app linking setup seems good. But still, the verification is failing. I did the following checklist assetlinks.json is correct and it hosted without any redirection (301 and 302). The website has a valid SSL certificate issued by…
Suneesh Ambatt
  • 1,347
  • 1
  • 11
  • 41
1
vote
0 answers

deeplink always open the play store even app is install

i am using firebase dynamic link and it is working in google chrome , messenger , whatsapp but not working in facebook browser it is opening play store my code to create dynamic link Future _createDynamicLink(id) async { final…
1
vote
0 answers

Deep Linking when the app is not installed in the device

I have this case where when clicked a link I redirect the user to the app using deep linking (made with RN) if the app is installed. However, if the app is not installed instead of displaying error or a popup, I need to navigate to another route in…
lordcarnisser
  • 87
  • 2
  • 10