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

Firebase Dynamic links always returned CANCELED

I'm using dynamic links for my app. I've followed the tutorial step-by-step and I'm able to open the app by clicking on the link posted on facebook. But when I invoke getInvitation, I always have CANCELED as status of AppInviteInvitationResult. …
CeccoCQ
  • 3,746
  • 12
  • 50
  • 81
6
votes
1 answer

Firebase Dynamic Links ofl parameter not working

I was creating short dynamic links with the py-firebase-dynamic-links where we can set parameters presented here. However, there is no desktopFallbackLink parameter to be used on the REST API. I need to set a link to open on desktop. What I am…
Sofia
  • 445
  • 4
  • 17
6
votes
0 answers

Deep links from firebase dynamic links to expo go

So i am using firebase dynamic links, created a link and it opens the downloadeble/production app in the playstore and appstore. And on the web it opens the URL so all that works fine. But i am developing in an expo managed workflow. And i would…
6
votes
0 answers

Flutter Firebase Dynamic Link is not working on new install

I faced with problem of first run with query parameters after new install of app. I use flutter app and check for new links by this pease of code: final PendingDynamicLinkData? initialLink = await…
pavel
  • 1,736
  • 1
  • 14
  • 23
6
votes
2 answers

parameter pendingDynamicLinkData specified as non-null is null

private fun getReferralId() { Firebase.dynamicLinks .getDynamicLink(intent) .addOnSuccessListener(this) { pendingDynamicLinkData -> pendingDynamicLinkData?.link?.getQueryParameter( …
user924
  • 8,146
  • 7
  • 57
  • 139
6
votes
3 answers

Flutter - Unable to use dynamic links in flutter web

I Am unable to use the firebase dynamic links plugin on flutter web. When am trying to create a deep link it gives error: Error: MissingPluginException(No implementation found for method DynamicLinkParameters#buildShortLink on channel…
Jagadish
  • 1,005
  • 11
  • 30
6
votes
0 answers

Can I redirect page from "Dynamic Link Not Found" page?

If there is no dynamic link in the url, the page says "Dynamic Link Not Found". Can I redirect to the home page from this page? Or can I change the content of this page?
winfini
  • 79
  • 1
  • 1
  • 4
6
votes
0 answers

iOS Deep linking: open app after installing from app store

I am trying to implement a feature like in this question Android Deep linking: Use the same link for the app and the play store but for iOS app. Currently, my app uses UniversalLink(example: https://www.example/com/code/000000), and if the app…
Ice
  • 680
  • 1
  • 10
  • 23
6
votes
1 answer

Firebase dynamic link not working as expected with custom domain

I have example.com custom domain and i want to let invite members to groups inside the app with dynamic links. I want to use app.example.com/ as prefix. All libraries installed, team id on firebase for ios is defined and imported with new google…
ugrdursun
  • 351
  • 1
  • 4
  • 19
6
votes
4 answers

Firebase dynamic link doesn't invoke dynamic link on first launch after install

I have read a lot of question on stackoverflow but none of them answer the question. I am trying to set up dynamic links so that a link will deep link the user to the app if they already have it installed and the play store if they don't. I expect…
Mike
  • 147
  • 2
  • 16
6
votes
1 answer

Firebase dynamic link with page preview disable not working

I would like to disable efr param to 1 in our dynamic link from firebase, in order to skip the preview page and get directly to the appstore. Thinking it will work.. but now the link is not copied to the app on install. What is your solution here in…
xGoPox
  • 674
  • 8
  • 23
6
votes
1 answer

Cannot add TXT records to firebase DNS domain

I have a firebase domain which looks like : https://my-app-id.firebaseapp.com/ I'm trying to create a Dynamic Link with this domain, but it fails on the Verify step. It says "We couldn't verify your domain web.app. Check your settings and try…
Tiberiu Popescu
  • 4,486
  • 2
  • 26
  • 38
6
votes
2 answers

Firebase Dynamic Links always uses first domain url prefix by default for sending authentication email

I have integrated firebase authentication with email in my android app. I have two domain url prefix in dynamic links section. By default, firebase always sends link with first domain url prefix. I tried setting domain url prefix in code by this…
6
votes
1 answer

Invite link to different groups using Firebase Dynamics Links in Flutter

So I am creating this app where we need to invite someone to a group to join it. I know I have to use Firebase dynamic links but I am not sure how to generate different unique URL for every new group so that people can join them. I have searched…
6
votes
2 answers

Android: How to remove the reference to a firebase dynamic link after receiving it?

In my app, I receive dynamic links within my main activity. This works great when a user opens a link and it launches the app and completes the correct actions, but the dynamic links seems to be staying around after it's been retrieved in the…
Kes Walker
  • 1,154
  • 2
  • 10
  • 24