找到了 apple-app-site-association 文件,但它不符合要求的格式

The apple-app-site-association file was found but it doesn’t follow the required format

我正在使用这个 API Validation Tool from Apple 并且我在特定页面中获得了 7 个验证中的 6 个通过,但是 "Universal Links" 测试得到了这个消息:

“找到了 apple-app-site-association 文件,但它不符合要求的格式。 了解如何格式化 apple-app-site-association 文件。"

我在 WWDC 2015 上看过这个视频“Seamless linking to your Apps" and "Introducing Search API" and read this App Search Programming Guide

我的网站有 SSL 证书(来自 Authority 认证),我的 apple-app-site-association 在里面 https://www.mywebsite.com/apple-app-site-association

这是我的 apple-app-site-association 文件的示例:

{
"applinks": {
    "apps": [],
    "details": [
        {
            "appID": “TeamId.com.MyCompany.MyAppName01”,
            "paths": [ “*” ]
        },
        {
            "appID": "TeamId.com.MyCompany.MyAppName02”,
            "paths": [ "*" ]
        }
    ]
   }
}

注意:appName 区分大小写。

我不知道文件有什么问题。也许是语法错误,但我看不到它。

任何帮助将不胜感激。

他们最近对格式进行了更改。根据 docs 你需要重新格式化它以匹配这个:

{
    "applinks": {
        "apps": [],
        "details": [
            {
                "appID": "9JA89QQLNQ.com.apple.wwdc",
                "paths": [ "/wwdc/news/", "/videos/wwdc/2015/*" ]
            },
            {
                "appID": "TeamID.BundleID2",
                "paths": [ "*" ]
            }
        ]
    }
}

另外,请给 Applebot 一些时间,它会在第二天开始为我工作。哦,我看到你的引号是错误的——确保你有正确的引号。仅使用这些:

"