I implemented Universal Links. The apple-app-site association is structured as follows:
{ "applinks": { "apps": [], "details": [ { "appID": "APPID.my.awesome.newspaper", "paths": [ "NOT /webapp/issue/*/ads/*", "/webapp/issue/*/*.html" ] } ] } }
For some reason, the first path is NOT considered at all.
For instance:
These URLs are processed as expected:
awesome-newspaper.my/webapp/issue/sz/2016-01-22/page_2.157908/article_1.2828646/article.html awesome-newspaper.my/webapp/issue/sz/2016-01-22/page_2.157908/page.html
This URL should not be treated as Universal Link and should always open in Safari.
awesome-newspaper.my/webapp/issue/sz/2016-01-22/ads/ad_145/index.html
But it always opens in the application.
Can anyone help me out?
source share