In order to make the connection between a website and an iOS app, I am trying to set Universal Links. But I am facing some issues. At this point I am using this tool to check that things are OK.
The URL I am checking looks like this:
http://www.example.net/MyApp/
And the results I get look like this:
Title Passed .....
Description Recommended .....
Image Passed https://....../rock.jpg
Touch Icon Passed http://......./custom_icon.png
Link to Application Action required
Could not extract required information
for application links. Learn how to
implement the recommended Universal Links.
Error cannot fetch app site association
As one can see, the problem is the "Link to Application" not working. But I have set a file apple-app-site-association inside .well-known/ under the root directory of the website.
And the apple-app-site-association file looks like this:
{
"applinks": {
"details": [
{
"appIDs": ["1122..8899.mybundle.example.MyApp"] ,
"paths": [ "*" ]
}
]
},
"webcredentials": {
"apps": ["1122..8899.mybundle.example.MyApp"]
}
}
Is there something in what is above looking wrong or suspicious.
I have never really used Universal Links before, so I am not confident that I am doing the right thing.