IOS universal links not working?

I have problems getting universal job links

starting apple check fails due to the following error: Error : no URL related applications

I thought that the validator does not work, but when working on an iOS 10 device (the possibility of a universal link, adding the correct domain to it), clicking on a valid link does not call the delegate methods in AppDelegate

Any thoughts?

+9
source share
4 answers

After 3 weeks ... It turned out that my path was wrong. My suggestion:

set the paths to ["*", "/"]during debugging, get everything to work and test, and then, as a last step, update the path and include only supported paths.

To be more specific, the link I was trying to register was site.com/events/123123, so I would add a path for /eventswhich is incorrect for registration site.com/events. I had to register /events/*instead

Also the easiest way to check this is to enter the expected links in the application Notes, because Safari has some kind of weird logic when links should be treated as deeplink.

Apple app-site-association validator , - , deeplinks. https://limitless-sierra-4673.herokuapp.com/

+11

Universal Link . , , , 10% . iOS 12, , , , , .

? , iOS , . , USB .

  • Xcode → Windows →

"swcd" (SharedWebCredential Daemon). , , iOS apple-app-site-association .

, dasd (DuetActivitySchedulerDaemon) SharedWebCredential Daemon, , , ...

{name: ThunderingHerdPolicy, policyWeight: 1.000, response: {Decision: Must Not Proceed, Score: 0.00, Rationale: [{deviceInUse == 1 AND timeSinceThunderingHerdTriggerEvent < 900}]}}
 ], FinalDecision: Must Not Proceed}

{name: ThermalPolicy, policyWeight: 5.000, response: {Decision: Absolutely Must Not Proceed, Score: 0.00, Rationale: [{thermalLevel >= 20}]}}
 ], FinalDecision: Absolutely Must Not Proceed}

, !

+5

Apple validator , , , , . https://couchsurfing.com/apple-app-site-association , .

, ? . , , Branch.io ( : Branch), .

+1

, .

, JSON, , , .

.

{
  "applinks": {
    "apps": [],
    "details": {
      "VPN42CNA7H.tv.abema.AbemaTV": {
        "paths":[ "*" ]
      }
    }
  }
}

https://abema.tv/.well-known/apple-app-site-association , Apple docs: application/octet-stream

Apple https://search.developer.apple.com/appsearch-validation-tool

URL- https://abema.tv

, JSON , Apple.

enter image description here

0

Source: https://habr.com/ru/post/1661640/


All Articles