ios 您所在的国家或地区当前未提供此应用剪辑

xtfmy6hx  于 2022-12-15  发布在  iOS
关注(0)|答案(1)|浏览(163)

我和我的团队正在积极开发一个带有关联应用剪辑的应用,但是,由于收到错误,我们无法在模拟器以外的任何设备上测试应用剪辑的启动:“您所在的国家或地区目前没有此应用剪辑”已注册本地体验,域名已与apple-app-site-association文件正确关联,体验已在app store connect上注册,应用剪辑可以正常启动。(没有先进的网址调用)。如果有人能知道一个原因,这可能会发生,这将是非常感谢!我们已经尝试了几乎一切的时刻。
关联文件:

{
    "applinks": {
        "details": [
             {
               "appIDs": [ "GROUPID.APPID"],
               "components": [
                 {
                    "/": "/*",
                    "comment": "Matches any URL with a path that starts with /."
                 }
               ]
             }
         ]
     },
  
      "appclips": {
          "apps": ["GROUPID.APPID.Clip"]
      }
  }
nhhxz33t

nhhxz33t1#

添加行“路径”:“应用程序ID”后的["*"]:[“GROUPID.APPID”],并确保您添加了
Appclip目标和主应用目标中的关联域
域名:
应用程序剪辑:appcliptest.com
应用链接:appcliptest.com

{
    "applinks": {
        "details": [
             {
               "appIDs": [ "GROUPID.APPID"],
               "paths":["*"],
               "components": [
                 {
                    "/": "/*",
                    "comment": "Matches any URL with a path that starts with /."
                 }
               ]
             }
         ]
      },
  
      "appclips": {
          "apps": ["GROUPID.APPID.Clip"]
      }
 }

相关问题