【问题标题】:apple-app-site-association file doesnt work with latest changesapple-app-site-association 文件不适用于最新更改
【发布时间】: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


    【解决方案1】:

    从应用中心安装 Dev App 时,它会选择一个新更改的 apple-app-site-association 文件。这解决了这个问题。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2020-06-06
      • 2016-03-13
      • 2020-08-28
      • 2017-02-16
      • 1970-01-01
      • 2018-12-15
      • 2018-01-05
      • 2016-01-06
      相关资源
      最近更新 更多