I try to implement App Link in my IOS project. I've setup URL Schemes, and tested by typing testApps://
into mobile safari. Open apps dialog is prompt.
Im also setup a html file, access by public domain, www.testSite.com/testApps.html
and include basic meta tag recommend by most Apps Link tutorial website. The file is shown as below:
<html>
<head>
<meta property="al:ios:url" content="testApps://default" />
<meta property="al:ios:app_name" content="testApps" />
</head>
</html>
However, safari do not prompt to open Apps when i key in the URL.
I also setup facebook apps setting, FB_test_Apps, set URL Scheme Suffix to be testApps
, turn on Single sign on and Deep Linking.
I share www.testSite.com/testApps.html in facebook, and also from apps which register under facebook apps FB_test_Apps (which it will show as "Via FB_test_Apps" under the post).
When i click on this two post, Facebook will load it in facebook's webview. However it do not prompt to open my apps as well.
Is there anything i've missed out?
Update
I found out this issue only happen in IOS9. iOS 8 able to work well.
Regard Steven