I am trying to create and new iOS 13 Associated Domain native link that has a page fragment AND a query component.
My link has these parts HTTPS://domain.com/#/fragment?property=value_***
I've tried a lot of iterations of this:
{
"applinks": {
"details": [{
"appIDs": ["MXXXXX.com.my.mobileapp"],
"components": [
{
"#": "/fragment"
},
{
"/": "/*",
"?": {
"property": "????" < and I've tried * and I've tried taking it out, and I've tried mixing it in with the
}
}]
}]
},
"webcredentials": {
"apps": ["MXXXXX.com.my.mobileapp"]
}
}
I can get it to work with any path, and I can get it to work with any fragment, BUT when I add a property of ANY kind, it doesn't register. What format would work with a property that is variable?