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

Possible to have two apps respond to the the same base URL using Firebase

I currently have a scenario where I have app A and a sister app called app B. I would like to have app A and app B respond to a Firebase dynamic link and be able to either app A or app B opened depending on which app the user has on their phone. Is…
user481610
  • 3,230
  • 4
  • 54
  • 101
0
votes
1 answer

getShortLink() and getPreviewLink () not recognized in Firebase dynamic links docs in Android

I'm looking to get a shortlink when using Firebases dynamic links using this code from their documentation: Task shortLinkTask = FirebaseDynamicLinks.getInstance().createDynamicLink() .setLink(Uri.parse("https://example.com/")) …
user481610
  • 3,230
  • 4
  • 54
  • 101
0
votes
1 answer

Firebase short link not working when copy pasting out of the docs

Task shortLinkTask = FirebaseDynamicLinks.getInstance().createDynamicLink() .setLink(Uri.parse("My link")) .setDynamicLinkDomain("sadfe.app.goo.gl") .buildShortDynamicLink() …
user481610
  • 3,230
  • 4
  • 54
  • 101
0
votes
2 answers

Firebase DynamicLinks - Can i see analytics of link created by the new buildShortDynamicLink API?

I'm using the new buildShortDynamicLink API of Firebase (And it's great). And i see there are two methodes for the ShortDynamicLink result: Uri shortLink = task.getResult().getShortLink(); Uri flowchartLink = task.getResult().getPreviewLink(); I…
Shirane85
  • 2,255
  • 1
  • 26
  • 38
0
votes
1 answer

Firebase Dynamic Links, not working

I am trying to investigate Firebase Dynamic Links, at this point without much success. I got started with this: https://firebase.google.com/docs/dynamic-links/ios/create. Though I followed the instruction as much as I could. I seem to hit a problem…
Michel
  • 10,303
  • 17
  • 82
  • 179
0
votes
0 answers

xcode project was working fine, than I tried to add the Firebase, dynamic links and invite pods and it started giving errors

After I tried to install the Firebase Dynamic links and invite pods, my project started showing errors. The error message I'm getting are below: [!] Could not automatically select an Xcode project. Specify one in your Podfile like so: project…
0
votes
1 answer

Firebase Dynamic Links does not survive installation process

I updated Firebase Dynamic Link pod to 1.4 version. In this version I found very useful class named FIRDynamicLinkComponents. I decided to use it to generate dynamic links. But I have 2 problems: Firebase doc says that dynamic links can survive…
Kamil Harasimowicz
  • 4,684
  • 5
  • 32
  • 58
0
votes
1 answer

Firebase dynamic link redirection

I'm using REST API provided by firebase for dynamic link generation. How do I create a link that opens up app and include app specific variables.
lcshobin
  • 125
  • 1
  • 16
0
votes
1 answer

Generating links for attribution with Firebase

It may be that I just don't understand what Firebase is doing with attribution, but I'd like to be able to create links that I can use in certain marketing spots that are not through one of the Firebase-selectable networks, but that will still allow…
Dave Martorana
  • 1,321
  • 13
  • 21
0
votes
1 answer

Using of Firebase App Indexing and Dynamic Links for my use-case

I want to use App Indexing and Firebase Dynamic Links in my app. Is it possible to set these services to work in the following way: App Indexing shows link to my app in Google Search results regardless the fact an app installed on users…
0
votes
1 answer

FireBase web Dynamic Link different text based on whether the application is installed or not

I am using FireBase Dynamic Links and generating my links on the fly by concatenating documented parameters to get a link that either deep links into the application or prompts the user to install it and then recovers the link in the application,…
Tomáš Hübelbauer
  • 9,179
  • 14
  • 63
  • 125
0
votes
1 answer

How to display site name in Firebase Deeplink redirect link to web

I'm working on integration of Firebase Dynamic link implementation support for iOS platform. I got some issue I have added here, but no clue till now. Other then I observer, it showing url goo.gl at top-right. How to do that?? Any suggestion what…
CoDe
  • 11,056
  • 14
  • 90
  • 197
0
votes
0 answers

Firebase Dynamic Link DMARC Error Android

I have been using Firebase Dynamic Links in my app for users to send email invites to other users. However, a user reported that using a Yahoo! email blocks her email invites with this error: 550 5.7.1 unauthenticated email from yahoo.com is not…
Dale Julian
  • 1,560
  • 18
  • 35
0
votes
1 answer

Using Dynamic Links to Accept Invites

Before I go into the issue I am having I'd like to provide you with some context. Currently I have users and sessions. Users are the what you would normally think of when you think of users, however sessions can be thought of as meetings. These…