下面两个文件应该是相同的(一个AASA文件),不同之处在于第二个文件是针对较新版本的iOS的。
但是根据https://branch.io/resources/aasa-validator/的说法,第一个文件是OK的:
{
"applinks": {
"apps": [],
"details": [
{
"appID": "1234567.mydomain.soft.MyApp",
"paths": ["*"]
}
]
},
"webcredentials": {
"apps": ["1234567.mydomain.soft.MyApp"]
}
}而另一个是无效的:
{
"applinks": {
"details": [
{
"appIDs": [ "1234567.mydomain.soft.MyApp" ],
"components": [
{
"/": "/*",
"comment": "Matches any URL"
}
]
}
]
},
"webcredentials": {
"apps": [ "1234567.mydomain.soft.MyApp" ]
}
}谁能告诉我为什么第二个有问题?
我看到了这条消息:
-- This domain's AASA was pulled, but the JSON format seems Invalid.发布于 2020-08-09 10:55:39
我不确定这是否是根本原因,但我在appIDs中看到一些空格。删除这些空格可能会对您有所帮助。
https://stackoverflow.com/questions/63322011
复制相似问题