【发布时间】:2020-01-31 12:06:01
【问题描述】:
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 是从缓存中取出的,那么如何清除呢?
【问题讨论】:
标签: deep-linking ios-universal-links apple-app-site-associate aasa