While validating my dynamic link configuration from the link
https://XXXXXXXXXXXXXXXXX.page.link/apple-app-site-association
I am getting the reponse as
{
"applinks": {
"apps": [],
"details": [
{
"appID": "XXXXXXXXXX.com.XXXXXXXX.XXXXXXXXX",
"paths": [
"NOT /_/*",
"/*"
]
}
]
}
}
Whereas the blog https://firebase.google.com/docs/dynamic-links/ios/receive has defined a configured dynamic link as
{
"applinks": {
"apps": [],
"details": [
{
"appID": "1234567890.com.example.ios",
"paths": [
"/*"
]
}
]
}
}
Where paths
doesn't contain NOT
.
Can it be the reason my dynamic link is showing 'Invalid Dynamic link' on clicking from Sign-in link received in the email?