we are currently in the process of linking our web portal to our native app (iOS). In the first step, we will try to implement some Deeplinks.
Therefore it is planned to host the "apple app site association file" on the domain (e.g portal.example.com) and provide deeplinks with the help of Universal Links. However, before we start the implementation, there are some questions left:
- Let's say we have only 3 URLs that should deeplink to the app. Each of them will get an own row in the paths section:
- portal.example.com/functions/firstfunction
- portal.example.com/functions/secondfunction
- portal.example.com/functions/thirdfunction
If the User now opens the first URL, he will be asked if he wants to open it in the app, right? Let's pretend the user accepts and opens the URL in the app. What happens if he then goes back to the portal and tries to open the second URL? Will he be asked again, or will the app remember the decision and open any URL from the aasa file in the app?
- What happens if we use wildcards and write the path like this: "portal.example.com/functions/*"
Thank you and bg!