I need to add url patterns for a domain that has multiple subdomains in the Url.
For example:
https://demo.site1.mybrand.company/
Where .company
is the top-level domain and mybrand
is the domain.
The problem is that the demo
subdomain can change based on the environment in the app, so it could be demo, or test, or anything, so I would like to make sure that any subdomain with site1.mybrand.company
can access the Dynamic Links API and generate links for that Url.
What I have tried:
Firebase docs cite that these are too permission and I am not sure if Firebase supports multi-tier domains such as this.
^https://.*.company/.*$
^https://.*.mybrand.company/.*$
^https://.*.site1.mybrand.company/.*$
Has anyone experienced this situation before or know if this particular scenario is supported?
References: