I would like to implement universal deep links for our apps. One of the requirement from the Apple is that apple-site-association file has to be on HTTPS web server. Is it just that or whole website needs to be https.
Asked
Active
Viewed 343 times
0
-
check full documentation here http://stackoverflow.com/questions/35609667/how-to-support-universal-links-in-ios-app-and-setup-server-for-it/35609668#35609668 – Vineet Choudhary Mar 07 '16 at 19:43
1 Answers
2
I've implemented universal links recently, and here are some points:
- Your
apple-app-site-association
file should be accessible through https. No other way around this. - If your site is http only, then you have to sign the
apple-app-site-association
file. Using the same certificates that are used for the httpsapple-app-site-association
file access. - If your site is fully https, then you don't have to sign the
apple-app-site-association
file, you can just upload it as is.
I know I've said apple-app-site-association
too often :), but I hope this helps.

Kaan Dedeoglu
- 14,765
- 5
- 40
- 41
-
Thank you so much for responding. I will try what you have mentioned. – user2084611 Feb 02 '16 at 01:20