Questions tagged [ios-universal-links]

With universal links, iOS users can tap a link to your website and get seamlessly redirected to your installed app without going through Safari. If your app isn’t installed, tapping a link to your website opens your website in Safari.

From the Supporting universal links archive documentation:

Universal links give you several key benefits that you don’t get when you use custom URL schemes. Specifically, universal links are:

  • Unique. Unlike custom URL schemes, universal links can’t be claimed by other apps, because they use standard HTTP or HTTPS links to your website.
  • Secure. When users install your app, iOS checks a file that you’ve uploaded to your web server to make sure that your website allows your app to open URLs on its behalf. Only you can create and upload this file, so the association of your website with your app is secure.
  • Flexible. Universal links work even when your app is not installed. When your app isn’t installed, tapping a link to your website opens the content in Safari, as users expect.
  • Simple. One URL works for both your website and your app.
  • Private. Other apps can communicate with your app without needing to know whether your app is installed.

Resources

774 questions
147
votes
44 answers

iOS Universal Links are not opening in-app

So I followed this tutorial exactly and use the same values as the ones provided: https://blog.branch.io/how-to-setup-universal-links-to-deep-link-on-apple-ios-9 The Apple Association file is also ready in the link…
Legolas
  • 12,145
  • 12
  • 79
  • 132
64
votes
5 answers

Requests to /.well-known/apple-app-site-association

I just checked my server logs and found the following weird requests coming in quite a lot. I have iOS 9 Universal Linking implemented, but those requests are running against /apple-app-site-association as far as I know. Jan 15 09:36:23 method=GET…
Tim Specht
  • 3,068
  • 4
  • 28
  • 46
54
votes
4 answers

Universal links on iOS vs. deep links (URL schemes)

As I'm reading, iOS 9 introduced Universal Links. In the "Support Universal Links" section in Apple's App Search Programming Guide, it says that this is not exactly like deep linking with URL schemes, but I'm not totally clear about this…
AppsDev
  • 12,319
  • 23
  • 93
  • 186
48
votes
0 answers

apple-app-site-association file is not fetched from server but cached at apple?

We have universal links working for a long time now. Today I added a path to the AASA file (let's call it sub2). The path was not recognised by the app, even after reinstalling it. When I debugged I noticed the file is being fetched by the applinks…
41
votes
2 answers

Does the apple-app-site-association json file ever get updated in app?

Other than the first initial install of the app, does the apple-app-site-association json file ever get updated? For example, if I add an additional value to the path array in the json file, will my app ever get that update?
wolfprogrammer
  • 574
  • 6
  • 14
40
votes
4 answers

How can I reset iOS 9 Universal Linking settings?

While testing universal links on my iOS 9 app, I accidentally tapped "mywebsite.com >" (top right corner). This made the app navigate to the website again. Now I can't seem to make universal linking work again. Seems like iOS has remembered my…
Sonny Saluja
  • 7,193
  • 2
  • 25
  • 39
39
votes
3 answers

How to support Universal Links in iOS App and setup server for it?

How i can support Universal Links in my iOS application and setup my server in order to support Universal Links?
Vineet Choudhary
  • 7,433
  • 4
  • 45
  • 72
35
votes
5 answers

iOS Associated Domains (Universal Links) with Wildcards not working

In an iOS app I am working on I have setup Associated Domains (Universal Links). The app hosts multiple domains. Some domains I have set up with a wildcard. These domains do not seem to work. For example, I want to link to…
Bocaxica
  • 3,911
  • 3
  • 37
  • 54
24
votes
6 answers

Universal Link is not working on properly on iOS 13 (AASA not downloaded)

Universal Link was working fine on iOS 12 but I ran into issues when I updated to iOS 13.1 yesterday. URLs that's supposed to open the app when tapped are just opening up in the browser. Some users on iOS 13 reported the same thing. Again, I never…
TKP
  • 443
  • 1
  • 9
  • 19
24
votes
2 answers

iOS Universal Link App Store redirect

I have universal links working correctly, when the app is installed I see how the link opens the app, and when it's not installed opens the url in safari. Actually what I would like to do is to redirect and go to the app store, so users can download…
Rodrigo.C
  • 1,123
  • 2
  • 10
  • 22
19
votes
2 answers

UniversalLink is not working on iOS 14 devices, but works well on simulator

The following solution can support universalLink on simulator. I have an app that support the UniversalLink. User click the supported links in the website, will be navigated to the features in the application. But It failed to work on the iOS 14…
Jin
  • 665
  • 1
  • 7
  • 15
19
votes
3 answers

iOS Universal Links and GET parameters

we're trying to implement app indexing on iOS using the Apple Universal Links (I'm looking at https://developer.apple.com/library/ios/documentation/General/Conceptual/AppSearch/UniversalLinks.html#//apple_ref/doc/uid/TP40016308-CH12-SW2). In the…
Marco Zanetti
  • 4,051
  • 6
  • 32
  • 48
18
votes
1 answer

How to upload file apple-app-site-association for universal linking in server for iOS app?

What is the procedure to upload apple-app-site-association file in server. stg1.example.com is website where universal linking need to be done and file should be uploaded in the root path of it.How to make the service to upload for universal…
Shrawan
  • 7,128
  • 4
  • 29
  • 40
17
votes
2 answers

Universal Link broken in iOS 11.2

I am using Branch deep links in an app for sharing links to content in the app via social media. Everything was working fine quite a while. When updating to iOS 11.2 I encountered the following behavior: 1) After the update the Universal Links still…
nice_pink
  • 435
  • 1
  • 3
  • 16
17
votes
2 answers

Universal Links on macOS

Since iOS9, universal links work on iOS, but I am wondering if there is something like that on macOS? We have an application that is a macOS-App with a corresponding Web-App, and we would love links clicked by the user to open in the Mac-App instead…
Georg
  • 3,664
  • 3
  • 34
  • 75
1
2 3
51 52