Reputation: 866
I'm trying to set up a universal link between a site and my app, but I realized that my site is on a non-secured connection (HTTP). If I want to have a universal link to my app, does the AASA request need to be on a secured connection (HTTPS)?
I have found some information about it but it isn't from the apple docs. A conformation about it would be great appreciated!
Upvotes: 0
Views: 237
Reputation: 11107
Yes it does require HTTPS official documentation says:
To protect users’ privacy and security, you should not use HTTP when you need to transport data; instead, use a secure transport protocol such as HTTPS.
Your can validate your AASA file using this tool.
Upvotes: 1
Reputation: 17882
Here's the official documentation: https://developer.apple.com/library/archive/documentation/General/Conceptual/AppSearch/UniversalLinks.html
Upload the apple-app-site-association file to your HTTPS web server.
(emphasis mine)
Upvotes: 1