Questions tagged [firebase-dynamic-links]

Firebase Dynamic Links drive usage to your mobile application from sources where only a URL can be provided, such as SMS, email, and marketing promotions. These links can help the user install and launch your app to exactly the point your user expects.

About Firebase Dynamic Links

Firebase Dynamic Links is a component of the Firebase suite of tools for cross-platform application development.

  • Improve acquisition and engagement by bringing users directly to content that they were originally searching for, whether they have your app installed or not
  • Delight new users with personalized promotions and messages after install

Related tag

1355 questions
7
votes
3 answers

Flutter firebase dynamic link not listening

I am trying to implement Firebase Dynamic links in a flutter app. When I click on the link it opens the app but doesn't call the listen functions. I reconfigured step by step according to FlutterFire, so I don't think the issue is in configuration,…
Joris
  • 697
  • 2
  • 9
  • 24
7
votes
0 answers

Firebase Dynamic Links - custom domain with custom logo/favicon

I have set up dynamic links with a custom domain name, now my dynamic links look something like this: https://my.domain.com/xXxX But, when I share these links via Skype, there's a Firebase logo in the bottom left corner. I would like to change this…
Eric Gopak
  • 1,663
  • 1
  • 13
  • 26
7
votes
2 answers

FirebaseDynamicLinks getInitialLink() fired multiple times

The getInitialLink() continues to give a valid dynamic link after the first retrieval. This leads to a loop where a user is continuously forced into a page associated with the deep link. Running `flutter doctor --verbose` produced the below…
sjsam
  • 21,411
  • 5
  • 55
  • 102
7
votes
1 answer

Firebase dynamic links on customdomain rewrite in hosting but how

I've setup a custom domain to use for firebase Dynamic Links. Hosting has been setup in Firebase Console and I tried to use dynamic links without the customdomain, but just a xxx.page.link. Now I want to return to use the custom domain, but from the…
Rasmus Christensen
  • 8,321
  • 12
  • 51
  • 78
7
votes
1 answer

How do I receive query parameters from Firebase Dynamic Links using react-native-firebase?

I've followed the instructions from the official react-native-firebase documentation and everything, as per the instructions, works fine. It is my understanding that I should be able to create a link like the following in the Firebase Dynamic Links…
user2719094
  • 1,611
  • 5
  • 26
  • 36
7
votes
3 answers

Firebase Cloud Functions: Requests from referer are blocked. - PERMISSION_DENIED

I am not sure why the following code is throwing google api key permission denied. I have the api or service enabled both in firebase console and google console. export async function createJobDynamicLink(job){ if(job.jobStatus !== 'approved' ||…
LearnToday
  • 2,762
  • 9
  • 38
  • 67
7
votes
3 answers

FirebaseDynamicLinks.instance.getInitialLink() always returning null on Android

I'm using firebase_dynamic_links for passwordless login with firebase and getInitialLink() is always returning null on version 0.5.0+8. If I use version 0.4.0+4 and retrieveDynamicLink() instead of getInitialLink() it works fine. Since it's working…
Dpedrinha
  • 3,741
  • 3
  • 38
  • 57
7
votes
1 answer

Install Referrer in Flutter from Google Ads

Is there a way in Flutter to get the install referrer from google play? https://developer.android.com/google/play/installreferrer/library.html if possible both Android and iOS. My Goal is to identify if the user was installed/downloaded from Play…
7
votes
1 answer

Dynamic links / universal links not working in cold start

I use firebase dynamic links. They work perfectly fine when the app is in background and I use the application continue userActivity function. However if I click on a dynamic link and cold start the application (not running in background) then not…
7
votes
1 answer

Firebase Dynamic Link PendingDynamicLinkData return null android

I tried the below firebase official dynamic link sample but is not working for me. Dynamic Link: Mainfest:
PLP
  • 714
  • 3
  • 13
7
votes
1 answer

Navigation component seems just working with short dynamic link (firebase)

Navigation component seems just working with short dynamic link Example: Long Dynamic Link https://domaindebug.page.link/?link=https://www.website.com&apn=com.x.debug&isi=122...6&ibi=com.ios.x.debug&efr=1 Short Dynamic…
rafaelasguerra
  • 2,685
  • 5
  • 24
  • 56
7
votes
0 answers

"Invalid Dynamic Link" error page after user uses login link

I am using Firebase email login link to authenticate the users of my iOS app, but for some users the system doesn't work and are presented with the following page after they tap on the link sent by Firebase via email: This happens sporadically and…
Flora
  • 299
  • 3
  • 11
7
votes
1 answer

Undocumented parameters in Firebase Dynamic Links REST API

I'm currently using the https://firebase.google.com/docs/dynamic-links/rest to build short dynamic links from both long links and parameters. Missing from this documentation is feature parity that exists on console, like attaching a custom suffix…
Ryan Romanchuk
  • 10,819
  • 6
  • 37
  • 41
7
votes
0 answers

Dynamic Link not opening web browser url

So when opening the dynamic link I get the error- Requested URL must be a parseable URI, but possibly incomplete to be a DynamicLink. I have the app store link attached to it. How do I fix this? Say my dynamic link is https://example.page.link and…
Abhinav Prakash
  • 153
  • 2
  • 10
7
votes
0 answers

Decode Firebase Dynamic Link back using JS

How can I convert a Firebase Short Dynamic Link (example.page.link/4eD2) back (example.com/test?var=1) with JS? I see from here that you can create a Firebase dynamic link with REST... https://firebase.google.com/docs/dynamic-links/rest As far as I…