Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to list all Firebase Dynamic Links?

I can see all the firebase dynamic links that are manually created in the firebase console.

However, I can't find those that are created with the firebase dynamic link rest api: https://firebase.google.com/docs/reference/dynamic-links/link-shortener

Is it possible to list/see all the dynamic links created with the rest api?

like image 837
Feng Zhao Avatar asked Nov 21 '17 02:11

Feng Zhao


People also ask

How do I find dynamic links?

You can also use Google Analytics in your app to track the performance of your Dynamic Links. The following Analytics events are automatically logged when you open a short or long Dynamic Link in your app. Logged when a user opens the app for the first time via a Dynamic Link.

Where is Dynamic link in Firebase?

You can receive a Dynamic Link containing a deep link that takes the user to specific content within your app: In the Firebase Console, open the Dynamic Links section.

How do you debug a Firebase dynamic link?

To help you debug your Dynamic Links, you can preview your Dynamic Links' behavior on different platforms and configurations with an automatically-generated flowchart. Generate the flowchart by adding the d=1 parameter to any short or long Dynamic Link. For example, example. page.

Do Firebase dynamic links expire?

As far as I know, dynamic links work for as long as your firebase project active. I used some dynamic links more than one year after they were created. I didn't see anything about any time limits in the documentation.


1 Answers

This is an intended behavior, but is a known feature request. Short Dynamic Links created programmatically are designed to be shared peer to peer. If there are multiple clients creating FDL, it's likely that the list of short links in the dashboard will be long. This can be challenging to navigate and track created links.

Short Dynamic Links created through Firebase Console on the other hand are more likely to be used in campaigns and makes sense to be tracked in the dashboard.

If you have more inputs regarding this function, you can file it as a feature request here https://firebase.google.com/support

like image 165
Omatt Avatar answered Sep 28 '22 00:09

Omatt