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
1 answer

Deep Link does not contain valid required params while clicking a dynamic link

i have setup my dynamic link as a documentation but while clicking a link it shows : Deep Link does not contain valid required params. URL params: { "_cpb" = 1; "_cpt" = cpit; "_fpb" = "CJsFEPcCGgVlbi1VUw=="; "_iumchkactval" = 1; "_iumenbl" =…
amir thapa
  • 103
  • 1
  • 1
  • 10
7
votes
0 answers

Firebase conversion for dynamic link event misses campaign attribution

I use the firebase services in my application and firebase google analytics. I have several dynamic deep links, which are build programmatically inside my application. (The links are also used for notifications or newsletters, as they work all the…
7
votes
2 answers

Flutter how to get firebase dynamic link if app is already running?

I receive a firebase dynamic link in initState. This works great if the app is completely off. But if the app was running before clicking the link, initState is not called again, thus the dynamiclink is not processed. Should I try to process the…
Gabeloooooo
  • 595
  • 5
  • 16
7
votes
3 answers

dynamic link firebase did not open app store when app uninstalled

i implemented firebase method of ios dynamic link. it works fine when app installed, it open app. but when app uninstalled, dynamic link did not open app store of the app. i read firebase and it said need to add efr=1. how to add it? example my…
Sarimin
  • 707
  • 1
  • 7
  • 18
7
votes
3 answers

firebase "long link is not parsable"

I want to shorten a longLink with firebase and the REST API but I get the following response and I don't know what is wrong: Response: { "error": { "code": 400, "message": "Long link is not parsable:…
breezertwo
  • 585
  • 7
  • 26
7
votes
2 answers

Firebase Dynamic Links do not survive app install on iOS 11.3.1

Firebase Dynamic Links do not survive on iOS 11.3.1 when user don't have installed. Anyone else experiencing this issue? This works fine prior to iOS 11.3.1 Repro steps:: Click on FDL link User redirected to app store User install app User open…
ordinaryman09
  • 2,761
  • 4
  • 26
  • 32
7
votes
2 answers

firebase dynamic link preview link not working with facebook messenger

Created firebase dynamic short link will not preview correctly in facebook messenger. It puts up the message and link as expected and shows a preview image with url. The url included in the message is working but not the url if I click on the…
7
votes
1 answer

Firebase dynamiclink onSuccess nor onFailure getting called

I am using the below code FirebaseDynamicLinks.getInstance() .getDynamicLink(getIntent()) .addOnSuccessListener(this, new OnSuccessListener() { …
Sweety Bertilla
  • 972
  • 10
  • 35
7
votes
2 answers

Once opening a firebase link always returns a link when reinstalling the app on a device

I am currently busy using the firebase dynamic link and everything works well except one thing. When I click on a firebase link, I will be redirected to the appstore where I can download the app. When I download the app, the openURL method is called…
IOSporgrammerIOS
  • 223
  • 4
  • 12
7
votes
2 answers

How to recognize firebase dynamic link before addSuccesListener?

In my application, many link handled in same Activity, So, I need to know what link when link received. I know that I will recognize after success listener, FirebaseDynamicLinks.getInstance() .getDynamicLink(intent) …
심현용
  • 71
  • 2
7
votes
0 answers

Android Firebase Dynamic links not working in Facebook messenger properly

I integrated my application with dynamic links from firebase successfully. But when I share a short link with SocialMetaTagParameters and click on the link in messenger it opens the browser and it should redirected to my application, but it is…
7
votes
0 answers

Firebase dynamic link is not open my app as new separate app in Android

I have configured firebase dynamic link in my sample android app,
7
votes
3 answers

ShortDynamicLink is not generating short link for dynamic links

creating a dynamic link DynamicLink dynamicLink = FirebaseDynamicLinks.getInstance().createDynamicLink() .setLink(Uri.parse("http://shaharapp.in/")) .setDynamicLinkDomain("https://cuh8g.app.goo.gl/") // Open…
sam
  • 216
  • 4
  • 17
7
votes
2 answers

Is there a limit to the number of short link for Firebase Dynamic Link?

Are there any upper limit on the number of short URL that can be created in Firebase Dynamic link? https://firebase.google.com/docs/dynamic-links/android/create#create-a-dynamic-link-from-parameters Such as shortened URL is made in units from…
yuki312
  • 267
  • 2
  • 3
  • 10
7
votes
1 answer

How to open dynamic links using Firebase notifications?

I am trying to implement Firebase notifications for our android app. I have also implemented Dynamic Links in the app. But, I am not able to figure out a way to send the notification with a dynamic link (so that on clicking the notification, a…