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

Firebase: create dynamic link with user id & token

I want to create a short dynamic link with firebase, which will able auto login for users on mobile, without inserting credentials manually. I also want to get analytics for each user (if he clicked the link, which link, success/fail etc.). So far,…
wizard
  • 583
  • 2
  • 9
  • 26
0
votes
1 answer

Objective C - cannot open my app by Firebase Dynamic Link

I'm new to iOS development. Today I try to embed the firebase Dynamic Link in my App to generate links to share. I try to implement it as the tutorial video, but after I set the Associated Domains in Capabilities and URL type in Info. I cannot open…
0
votes
1 answer

Close my application open on top of another app

When clicking on a Firebase dynamic link in another application (my application is not started), my application will open on top of that app. When I close the app, my app is not being closed properly. I clicked on my app icon, my app back to the…
0
votes
1 answer

Change domain of firebase dynamic link

I'ma trying to change the short dynamic link generated dynamically in code. For example "https://abc123.app.goo.gl/WXYZ" should be something like this "https://mywebsite.app.goo.gl/WXYZ". If you guys can help me out I would really appreciate it!
IOSporgrammerIOS
  • 223
  • 4
  • 12
0
votes
1 answer

firebase dynamic link, send user to website first?

Clicking the received link on an Android device that have the app installed already -> The app opens [great!] Clicking the received link on an Android device that DO NOT have the app installed already -> Google Play opens I am wondering if I…
eugene
  • 39,839
  • 68
  • 255
  • 489
0
votes
1 answer

Firebase Dynamic Link not recognized when app not in background (iOS)

When the app is in background mode (already installed and launched once), clicking on a dynamic link calls the continueUserActivity method. However, when the app is not launched yet (or not installed), app doesn't seem to detect the dynamic link.…
0
votes
1 answer

How can i get the firebase shortlink out of task

I have successfully implemented the firebase dynamic links but failed to get the shorten link out of task so that it can be used in other class any help? this is my code sofar: Uri Shortlink; protected void onCreate(Bundle savedInstanceState) { …
Clement
  • 35
  • 3
0
votes
1 answer

Firebase dynamic links long version not firing automatic analytics events

The long version of a Firebase Dynamic Link is not firing the events First-opens, clicks, re-opens... Is that a bug or is it on purpose, and in that case why? Background: I cannot use the short version because I am adding programmatically a…
patxeco
  • 41
  • 4
0
votes
1 answer

How to receive global link using Firebase Dynamic Links for Android

Let's assume First user send invitation to second user. User send some global link and second user receive it. In my case user received dynamic link instead of global link in Android device. I would like to share current uri…
Vahe Gharibyan
  • 5,277
  • 4
  • 36
  • 47
0
votes
1 answer

Firebase dynamic link(Send some data)

I am new in Android development, I am currently work on Firebase dynamic link in my Android app. I have successfully create and send dynamic link but not to able some data with dynamic link so can anyone answer my question. How can I send some data…
0
votes
1 answer

I cannot retrieve the Firebase dynamic link that should be inside the intent data on Android

I need to retrieve the short dynamic link when the user clicks on it on Android. But, when the user is clicking on the link I am only receiving the deep link when using the default implementation found on Firebase. when I used a different approach…
Miled Aoun
  • 1
  • 1
  • 3
0
votes
1 answer

How to know app was installed through firebase dynamic link in didFinishLaunchingWithOptions?

I am implementing firebase dynamic links in my iOS app and I can already parse the link, redirect to AppStore etc. Now I want to distinguish the first run of the app, when user installs it from the dynamic link - I want to skip the intro and show…
muyat
  • 57
  • 3
  • 13
0
votes
2 answers

Firebase URL Shortener with jQuery Ajax Post?

I'm new to Firebase. I'm trying to make use of Dynamic Links. This is what I have so far... var longUrl = 'https://example.com/' + window.location.hash; var APIkey = 'My Web API Key Here'; var url =…
Adam Youngers
  • 6,421
  • 7
  • 38
  • 50
0
votes
1 answer

First-open attribution in Firebase through Dynamic Links

I am using Firebase on my ionic app for Analytics and it is working well (on iOS and Android). I tried recently to setup a Dynamic Link with custom campaign, medium and source parameters for a marketing campaign. The clicks are well-tracked, I can…
Paganel
  • 205
  • 3
  • 12
0
votes
2 answers

Android Firebase: The user remains not verified, when using a dynamic link

My task requires of me to ask an account verification inside the App, so I use sendEmailVerification with ActionCodeSettings as fallowed: ActionCodeSettings settings = ActionCodeSettings.newBuilder() .setAndroidPackageName("***",…