I need to put custom query
params to firebase dynamic link
leading to AppStore. Once a user has installed the app I need to get that URL with query params.
I tried to build both short and long dynamic links, but it doesn't work.
Firebase dynamic link configuration for https://myApp.page.link/ios:
Things I've tried:
1) https://myApp.page.link/ios/?link=https://apps.apple.com/ru/app...&ifl=https://www.google.com&gclid=4324234
2) https://myApp.page.link/?link=https://apps.apple.com/ru/app...&gclid=4324234
3) https://myApp.page.link/?link=https://apps.apple.com/ru/app...?gclid=4324234
4) https://myApp.page.link/?link=https://apps.apple.com/ru/app...&ifl=https://www.google.com&gclid=4324234
Inside the app I try to get the initial link using flutter firebase_dynamic_links pub package and i always get only link, leading to AppStore with no query params.
What am I doing wrong? How should links look like to be able to put custom param into app?