I am trying to use Firebase Invites from React Native. It generates a link of the form "https://mysite.page.link/i/" in the invitation, but does not redirect to the deep link I set while creating the invitation. It gives me a 400 Not Found error, even though I have whitelisted the URL pattern from Dynamic Links section on Firebase Console. I am using com.google.firebase:firebase-invites:16.0.1 by the way.
If I create a fixed dynamic link from the console, that one works. I am guessing the Invite links are special Dynamic Links that have some issues, unless I am doing something wrong. I need to create the links on the fly because the deeplinks will contain user-specific information, so I cannot create fixed links from the console. I am thinking of abandoning this approach and create a Dynamic Link programmatically (non-Invite way) and share it via some React Native Share api.
It is the second problem I am facing while using Firebase Invites (link to the first one). Can anyone help? Bit frustrated to face these issues from a service like Firebase.