I'm trying to set up universal links for my app. I've placed apple-app-site-association file in .well-known directory of web server. Url to it allow me download this file. But I have error when use https://search.developer.apple.com/appsearch-validation-tool/: " 'myurl.com'is returning 601. Please check your url and try again."
Here my file:
{
"applinks": {
"apps": [],
"details": [
{
"appIDs": [
"App ID Prefix.Bundle ID",
"App ID Prefix.Bundle ID",
"App ID Prefix.Bundle ID",
"App ID Prefix.Bundle ID",
"App ID Prefix.Bundle ID",
"App ID Prefix.Bundle ID"
],
"components": [
{
"/": "/myapp-app",
"comment": ""
}
]
},
{
"appID": "App ID Prefix.Bundle ID",
"paths": [
"/myapp-app"
]
},
{
"appID": "App ID Prefix.Bundle ID",
"paths": [
"/myapp-app"
]
},
{
"appID": "App ID Prefix.Bundle ID",
"paths": [
"/myapp-app"
]
},
{
"appID": "App ID Prefix.Bundle ID",
"paths": [
"/myapp-app"
]
},
{
"appID": "App ID Prefix.Bundle ID",
"paths": [
"/myapp-app"
]
},
{
"appID": "App ID Prefix.Bundle ID",
"paths": [
"/myapp-app"
]
}
]
}
}
I cannot find an issue in my file. There are 6 appIds because we had 6 environments for our app. What I do wrong?