Earlier AASA file was
{
"activitycontinuation": {
"apps": [
"APPID.BUNDLEID",
]
},
"applinks": {
"apps": [],
"details": [{
"appID": "APPID.BUNDLEID",
"paths": ["/join/*"]
}
]
}
}
It was working fine. Later URL change came and now we have /j/ instead of /join/. We changed AASA file to,
{
"activitycontinuation": {
"apps": [
"APPID.BUNDLEID",
]
},
"applinks": {
"apps": [],
"details": [{
"appID": "APPID.BUNDLEID",
"paths": ["/j/*"]
}
]
}
}
Issue is deep linking works with /join/ path only and not with the new path /j/. 关联域名的值为*.domain.co。我们从设备上删除了应用程序,并重新安装了它。已重新启动设备,但深度链接仅适用于旧的URL。如果从缓存中取出AASA,那么如何清除它?
发布于 2020-02-03 14:34:12
从应用程序中心安装Dev App时,它会获得一个新更改的apple- app -site-association文件。解决了这个问题。
https://stackoverflow.com/questions/60003594
复制相似问题