How to setup associate domain for iOS app where its allows open link with # value

129 Views Asked by At

There is one link for email authentication. So link from my specified domain have emailAuth value than its should be open in app else it should be open in browser.

But issue is

If link have # value https://webdomain/#/emailAuth/<tokenvalue> then It's not opening in my app.

But If link not have # value than its open in my app https://webdomain/emailAuth/<tokenvalue>

Configuration

I have setup associate domain for iOS application.

Where I have add capability for associate domain with value applink:webdomain

I have also uploaded apple-app-site-association file to server

{
    "applinks": {
        "apps": [],
        "details": [
            {
                "appID": "teamID.bundleID",
                "paths": [
                {
                    "/": "/emailAuth/*",
                    "comment": "Matches any URL with a path that starts with /emailAuth/*."
                }]
            }
        ]
    }
}
0

There are 0 best solutions below