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

How to discover IOS app's deep links?

I am trying to examine an IOS app so that I can link to it using deep links or universal links from a web page. Is there a utility to interrogate deep links or universal links from an app binary or an API? I looked…
David Watson
  • 3,394
  • 2
  • 36
  • 51
0
votes
0 answers

iOS9 Universal link - linking to app but not reading the URL

So here is my issue. I have universal link working in my Unity game built for iOS9 too. The thing is,while I do get directed straight to the app as I wish by clicking "https://www.myappDomain.com..." or "myappDomain://...", it is only by clicking…
gStation
  • 73
  • 1
  • 6
0
votes
1 answer

Universal Link is not opening in app in iOS 9

Created the URL Types in info.plist file and its URL scheme is http. Created the NSUserActivity Type. Created the entitlements, UIWebView in 'ViewController' class. In AppDelegate method I implemented below code: func application (application:…
Megha
  • 95
  • 1
  • 7
0
votes
2 answers

iOS 9 universal links working. Exclusion path not working

There are several other posts which say universal links are not working. I have a different issue where these links are working, however I want to exclude some specific url's on my website from launching the app and this is not working. As…
Seamus
  • 1,107
  • 10
  • 22
0
votes
1 answer

Is there any alternative to Universal-linking in SWIFT?

Okay I have been trying day long to figure deep linking and universal linking. I am trying to design an app which has a deep link as "bunty" . So I have a web link as http://www.bunty.org & if I click on this URL in my iphone it would result in…
G.Abhisek
  • 1,034
  • 11
  • 44
0
votes
1 answer

Universal Links iOS 9 - Issue

I have implemented Universal links in iOS app. It works perfectly when I put the url in external app such as "Notes" and then tap it. It opens the app. What I want to achieve is that when someone visits a specific url of my webpage, the ios app…
0
votes
1 answer

Xamarin iOS Universal Links support for Twitter Auth

So, now twitter from 25 sep supports universal linking, it means that when UIWebView hits https://twitter.com/oauth/authorize?oauth_token link, it tries to open a twitter app, and if it is there, then it redirects me to auth page with auth error, so…
animekun
  • 1,789
  • 4
  • 28
  • 45
-1
votes
1 answer

When using universal links, the "continue" calls are now only called in the SceneDelegate - can they be called in the AppDelegate?

These days in iOS apps, AppDelegate#willContinueUserActivityWithType and AppDelegate#continue#restorationHandlers are simply it seems not / never? called when you click a universal link. Instead, SceneDelegate#continue…
Fattie
  • 27,874
  • 70
  • 431
  • 719
-1
votes
1 answer

iOS universal link with url path containing "#!"

My iOS app has to support a universal link to a page something like https://example.com/#!/game/home And I am having difficulties in getting this to work. I have created an AASA file like { "applinks": { "apps": [], "details":…
Krishnabhadra
  • 34,169
  • 30
  • 118
  • 167
-1
votes
1 answer

Use of Universal link open jitsi video in my App of Meeting but it open only my App.not meetings

Hi team I want to open jitsi link Video in my app. after clicking the the jitsi link Video which in getting from what'sup, iMessage in the iPhone . I am implemented Universal linking in iOS but its open the my App only not open meeting of the…
Dev_Sam
  • 1
  • 4
-1
votes
2 answers

iOS13: Universal Links not opening if the app was not running

We have implemented handling of universal links in our app and I am struggling with the following issues: Universal Links opens when the app is running in the background (working fine) When running on the device with iOS13 installed, opening a…
Danish Farooq
  • 135
  • 1
  • 10
-1
votes
1 answer

How to identify "www.domainname.com/?v=" in Universal link "apple app site association" file in "path" array

{ "applinks": { "apps": [], "details": [ { "appID": "47BSW6D45T.com.acno.AppBundleId", "paths": [ "/?v=*", "/v=*", "/*v=*" ] } ] } } I tried paths that is write in paths Array but did…
raavan199
  • 125
  • 1
  • 1
  • 10
-1
votes
1 answer

JSON File Not Recognized While Implementing Universal Links

I am building a simple app with expo. While implementing linking for android and iOS, I was editing the app.JSON. When I went to rebuild the android build, the terminal gave an error message: app.json must include a JSON object. The terminal…
Libre
  • 73
  • 6
-1
votes
1 answer

Cordova Universal Links works in iOS Simulator but not in dev/prod builds

I am developing a Cordova hybrid app. I added the cordova-universal-links-plugin 1.2.1 to my project. It compiles and works fine with Android. I went through all the setup steps for iOS located at…
Raed N.
  • 172
  • 11
-1
votes
1 answer

Redirect user from iOS browser to App if installed, or to App Store if not - like Yelp

How can I detect whether the user browsing to my website has installed my app, and redirect to it on the click of a button in the banner like yelp? I only need help with the detecting and redirecting from the browser. Yelp manages to do it. I tried…
1 2 3
51
52