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

Firebase does not track clicks on dynamic links

I have created a dynamic link through the Firebase console. The link works correctly according to its flow. The issue is that the link analytics does not work. On the day of creation, Firebase counted clicks. But on the day after creation, total…
Vladimir
  • 301
  • 3
  • 12
14
votes
4 answers

Firebase dynamic link always goes to app store URL even if the app is installed

I am trying to integrate Firebase dynamic link into IOS app but the problem is that even if the app is installed the dynamic link is taking me to app store page to download the App from app store. Did anybody face the same problem and have solution…
Ajay Beniwal
  • 18,857
  • 9
  • 81
  • 99
14
votes
2 answers

How to add Custom Text instead of URL in Deeplink message

I'm integrating Firebase to support Deeplink feature in app. I have seen in one of screen-example suggested(PFA) here that we can add our own custom text instead of display Deep link URL. I have tried to update but that did not help. How to do…
CoDe
  • 11,056
  • 14
  • 90
  • 197
13
votes
3 answers

Short Dynamic link error com.google.android.gms.common.api.ApiException: 8:

I am trying to get Firebase dynamic links to work in my app. I have a function with the following //long String link = "http://www.blessd.mobi"; DynamicLink m = FirebaseDynamicLinks.getInstance().createDynamicLink() …
the_big_blackbox
  • 1,056
  • 2
  • 15
  • 35
13
votes
3 answers

Firebase dynamic link, clear it after using once

https://firebase.google.com/docs/dynamic-links/android/receive states that Calling getDynamicLink() retrieves the link and clears that data so it is only processed once by your app. You normally call getDynamicLink() in the main activity as…
eugene
  • 39,839
  • 68
  • 255
  • 489
13
votes
0 answers

DynamicLinks.API is not available on this device

I have implemented Dynamics Links in my instant app, when click in link open the instant app but in to method getDynamicLink(intent) it shows me the following error: com.google.android.gms.common.api.ApiException: 17: API: DynamicLinks.API is not…
Juangra13
  • 141
  • 8
13
votes
5 answers

Firebase Deep Link short URL

Can the links for Firebase deep links be shortened? Do they have that feature? Links generated are too long and that is not good.
shibapoo
  • 1,909
  • 3
  • 16
  • 22
12
votes
0 answers

Firebase Dynamic Links deprecated

According to the official document, Firebase Dynamic Links will be deprecated. Firebase Dynamic Links is no longer recommended for new projects. In the future, the Dynamic Links service will shut down, but you will have at least 12 months from the…
Allen
  • 2,979
  • 1
  • 29
  • 34
12
votes
0 answers

How can i restore an Archived dynamic link accidently?

I have two dynamic links in my firebase dynamic links which we are already using in our app so i just accidentally archived both links, now i am trying to unarchive those links but not getting any. Please let me know what way i can retrieve those…
12
votes
2 answers

Firebase dynamic links for multiple iOS apps in project

I have a firebase project with two iOS apps and two Android apps. These apps needs to share databases and users so this design seems natural. Regarding dynamic links, Android works like a breeze but I’m struggling with the iOS part. Basic dynamic…
12
votes
1 answer

What is customURLScheme in Firebase Dynamic Links?

In the documentation it says to add the following lines to my AppDelegate.swift: // Set deepLinkURLScheme to the custom URL scheme you defined in your // Xcode project. FIROptions.default().deepLinkURLScheme = self.customURLScheme From what I…
MarksCode
  • 8,074
  • 15
  • 64
  • 133
12
votes
2 answers

How to shorten a Firebase Dynamic Link using my own domain name

I'm trying to implement Firebase Dynamic Links in an iOS app. The goal is to have a clean URL for marketing purposes so folks can share links on social media. The idea is folks will share the clean URL that starts with my domain name. When the app…
Zach Rattner
  • 20,745
  • 9
  • 59
  • 82
12
votes
2 answers

Test Firebase Dynamic Links for Unpublished App

I have a dev version of my app that is not published in the Play Store. I would like to test dynamic links with it, but whenever I click a dynamic link, it opens the play store, and I get a not found error (because there is no corresponding package…
Eliezer
  • 7,209
  • 12
  • 56
  • 103
12
votes
2 answers

How get extra parameter from dynamic link using Firebase?

I have created dynamic link manually and i set some additional parameters on the link, like this: https://XXXXX.goo.gl/?link=https%3A%2F%2Fairbanq.send.com%2Fsendmoney&apn=com.xxxx.xxxx&amv=1&username=Adri&amount=7.00 But when the app is opened i…
11
votes
0 answers

Link showing "socialmeta.page.link" on Slack

I'm generating a shortlink using the REST API. It works, but when I paste the link into Slack it shows "socialmeta.page.link" (see image) along with the metadata I've provided. Like this: Here's the data I use to generate the…
1 2
3
90 91