Hi There, hopefully someone can help me here, we weren’t aware but our universal links stopped working sometime last year, as they are not used often on the apps, it wasn’t noticed. We checked all the elements and this is the situation:
- Our apple-app-site-association file is located at
https://ourdomain.com.au/.well-known/apple-app-site-association And it is accessible and can be downloaded.
-
We have Associated Domain services enabled for our app Bundle Id: au.com.identifier.app
-
The Entitlements.plist in our app contains the list of associated domains - the second is the full url, the portal won't let me write it as such as it's not the real address.
<array> <string>applinks:ourdomain.com.au</string> <string>applinks:wwwdotourdomain.com.au</string> <string>applinks:ourdomain-prod-ourdomainwebsite.azurewebsites.net</string> </array>
But links for the first two, …ourdomain.com.au domains don’t work Request https://ourdomain.com.au/.well-known/apple-app-site-association downloads the file and returns status code:403
While checking the availability with https://app-site-association.cdn-apple.com/a/v1/ourdomain.com.au we get the error: ourdomain.com.au: Failed to load resource: the server responded with a status of 404 (Not Found)
Going directly to the hosted website: https://app-site-association.cdn-apple.com/a/v1/ourdomain-prod-ourdomainwebsite.azurewebsites.net Returns the json: { "activitycontinuation": { "apps": [ "99ABCD88***.au.com.identifier.app", "99ABCD88***.au.com.identifier.server.adhoc", "99ABCD88***.au.com.identifier.server.dev" ] }, "applinks": { "apps": [], "details": [ { "appID": "99ABCD88***.au.com.identifier.app", "paths": [ "/m/" ] }, { "appID": "99ABCD88***.au.com.identifier.server.adhoc", "paths": [ "/mt/" ] }, { "appID": "99ABCD88***.au.com.identifier.server.dev", "paths": [ "/md/*" ] } ] } }
It appears to be something in the redirect from the url but debugging shows nothing obvious. Has anyone experienced this before?
Thanks