我最近开发了一个应用程序剪辑,并将其发布在App上。我已经创建了默认的应用程序剪辑体验,并将apple- app站点关联文件放在.众所熟知的目录中。JSON看起来是这样的。
{
"applinks": {
"details": [
{
"apps": ["T3Y3F3XXXX.it.company.my-app"],
"components": []
}
]
},
"appclips": {
"apps": ["T3Y3F3XXXX.it.company.my-app.Clip"]
}
}这就是我在上所做的:



我的meta看起来是这样的
<meta name="ARShades" content="app-id=1586660000, app-clip-bundle-id=it.company.my-app.Clip, app-clip-display=card">问题是智能应用程序条条旗不会出现。我想我已经满足了苹果公司提出的所有要求:https://developer.apple.com/documentation/app_clips/supporting_invocations_from_your_website_and_the_messages_app

发布于 2022-07-26 15:08:14
尝试在apple-app站点关联文件中使用以下JSON:
{ "applinks": {
"details": [
{
"appIDs": [ "T3Y3F3XXXX.it.company.my-app" ],
"components": [
{
"#": "no_universal_links",
"exclude": true,
"comment": "Matches any URL whose fragment equals no_universal_links and instructs the system not to open it as a universal link"
}
]
}
] },
"appclips": {
"apps": ["T3Y3F3XXXX.it.company.my-app.Clip"]
}
}https://stackoverflow.com/questions/73125476
复制相似问题