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-Linking detect source

I have a question about deep-linking of Android: Do we have any ways to detect source when open our app by deep-link?. Example: When I search app in Google Chrome and then I open app by click on one of search result. Then we would have a params such…
dinhlam
  • 708
  • 3
  • 14
1
vote
2 answers

Matching file name using Android intent-filter pathPattern

I need to match urls ending in /*-u.html, e.g. https://www.example.com/something/whatever-u.html. I've tried android:pathPattern="/.*-u.html", which works for the above url, but it doesn't work if there's a hyphen anywhere else in the url, e.g.…
aaronmarino
  • 3,723
  • 1
  • 23
  • 36
1
vote
0 answers

Issues with deep link opening application

I've made this application that opens when an user clicks on the link. If I share the link on whatsapp, the thing that happens is that my appication start running on whatsapp process. How is it possible? I put also a screenshot of what's happening…
1
vote
1 answer

Microsoft OAuth redirects with 302 instead of 200, which breaks deep link logic on mobile device

What I am using OAuth to authenticate with Microsoft: https://login.microsoftonline.com/common/oauth2/v2.0/authorize...&redirect_uri=MYURL (I also use similar approach with google:…
Agat
  • 4,577
  • 2
  • 34
  • 62
1
vote
1 answer

iOS app deeplinks and Firebase dynamic links don't work after app transfer

I've transferred my iOS app from one developer to another. Then after first release at new account, my deeplinks accidentally stop working. Deeplinks implemented using universal links on my own hosted url and firebase dynamic links.
えるまる
  • 2,409
  • 3
  • 24
  • 44
1
vote
0 answers

How to manually set Linking.getInitialUrl to be null

Linking.getInitialUrl is not null when coming back to active state after exit app on back press. So, its navigating even when no intent was given.
adiwon
  • 59
  • 6
1
vote
1 answer

Firebase Dynamic Links Short URL not working as expected

I'm experiencing two issues with the Dynamic Links. I turned-on the app Diagnostics and the Log says no errors. Specified custom URL scheme is com.*****.** and Info.plist contains such scheme in CFBundleURLTypes key.performDiagnostic completed …
1
vote
2 answers

Why does waze deeplink not work in asynctask?

background am trying to launch waze with following intent from an asynctask onPostExecute after the task geocodes an address, but it is not working. the link works fine, it as ill explain, it has something todo with launching an intent from the…
sh7411usa
  • 196
  • 1
  • 13
1
vote
1 answer

How to open a deep link / universal link from LinkedIn?

I created a React Native app with deep linking, or universal linking would be better named : I have a link https://share.my-app.com/id/12345, when it is clicked within a phone, there are three options: -> the user has the app on the phone: it should…
arnaudambro
  • 2,403
  • 3
  • 25
  • 51
1
vote
2 answers

How do you specify an apple-app-site-association file path to match query strings?

I'm trying to set up universal linking in a mobile app I am building. The path I'm trying to match on my website is www.mywebsite.com/route?query=xxx The apple docs have an example apple-app-site-association file that looks like this. { …
Jon_B
  • 969
  • 4
  • 16
  • 24
1
vote
1 answer

Expo: Deeplinking into Android app from website in Chrome browser

I built a simple app using Expo, and have installed "stand-alone" builds on iOS and android devices. The app has a custom scheme "myapp://". On iOS, I can open a browser window, type "myapp://" in the url and hit enter, and I'm asked whether I want…
duhaime
  • 25,611
  • 17
  • 169
  • 224
1
vote
1 answer

Deep links not working anymore in Android

I've started a new project in Android Studio and added this to my androidmanifest.xml:
Jim Clermonts
  • 1,694
  • 8
  • 39
  • 94
1
vote
2 answers

how do I open a file when Vue.js router path is /apple-app-site-association

I have a Vuejs project with the following folder structure https://ibb.co/dpGPBNw I would like to open the file named apple-app-site-association inside the path static/config which is outside my src folder, using vue-router routing. That means when…
Keith M
  • 421
  • 1
  • 8
  • 18
1
vote
1 answer

How do I set correct values for Linking.makeUrl in expo app?

I have a simple expo app that I have just started from expo init with the minimal template. I have a website that I want to put a link to my expo app on. How do I build this link? Following https://docs.expo.io/versions/latest/workflow/linking/…
Stretch0
  • 8,362
  • 13
  • 71
  • 133
1
vote
1 answer

Android Deep Linking with React Navigation 5

I am trying to implement Deep Linking in React Navigation 5 into my React Native 0.61 project, which was created via react-native init. When the app is in the background, deep linking works. On my Android device, I can click on…
adhdj
  • 352
  • 4
  • 17