Sunny Shah
Sunny Shah

Reputation: 13020

Universal Link open URL after subdomain

I am working on universal link. I had some urls to open in my application.

I had added portal.xyz.com in associated domains.

Problem : My application opens on https://portal.xyz.com/. I want to continue this URL to browser. Just want to open URL that having start path https://portal.xyz.com/da/notification**.

How can I do this?

Upvotes: 0

Views: 1067

Answers (1)

Manikanta Chintapalli
Manikanta Chintapalli

Reputation: 333

Please keep same associated domain in your project and you need to handle this case from apple-app-site-association file that you have uploaded in server,

{
  "applinks": {
      "apps": [],
      "details": [
          {
              "appID": "9JA89QQLNQ.portal.xyz.com"//keep your Apple Id of you application,
              "paths": [ "/da/notification/*"]
          }
      ]
  }
}

Ref: https://developer.apple.com/library/content/documentation/General/Conceptual/AppSearch/UniversalLinks.html

Hope it will be helpful.

Upvotes: 2

Related Questions