16

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?

Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441
Feng Zhao
  • 2,977
  • 1
  • 14
  • 20

1 Answers1

3

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

Omatt
  • 8,564
  • 2
  • 42
  • 144
  • Any progress with the feature would be really helpful to get it up and running? – MeLean Apr 20 '21 at 07:16
  • @MeLine a workaround for this feature is to store the generated links on your own i.e. store it via [Firebase Realitime Database](https://firebase.google.com/products/realtime-database) or other preferred database solutions – Omatt Apr 20 '21 at 08:38