we\'re trying to implement app indexing on iOS using the Apple Universal Links (I\'m looking at https://developer.apple.com/library/ios/documentation/General/Conceptual/AppS
For query parameters appended to a path off of the base domain (i.e. https://www.mywebsite.com/pathOffOfTheBaseDomain?parameter=something) use:
{
"applinks": {
"apps": [],
"details": [
{
"appID": "TEAMID.BUNDLEID",
"paths":[ "/pathOffOfTheBaseDomain" ]
}
]
}
}
According to Apple Universal Link documentation:
Note that only the path component of the URL is used for comparison. Other components, such as the query string or fragment identifier, are ignored.
The full URL will be ripe and ready for parsing in AppDelegate's continueUserActivity method.