I'm trying to set up universal linking in a mobile app I am building. The path I'm trying to match on my website is www.mywebsite.com/route?query=xxx
The apple docs have an example apple-app-site-association
file that looks like this.
{"applinks": {"apps": [],"details": [ {"appID": "9JA89QQLNQ.com.apple.wwdc","paths": [ "/wwdc/news/", "/videos/wwdc/2015/*"] }, {"appID": "ABCD1234.com.apple.wwdc","paths": [ "*" ] } ] }}
But this example does not have an example of a path with a query string.
How can I match my route www.mywebsite.com/route?query=xxx
in my apple-app-site-association file?
Thank you