dev.for.fun
dev.for.fun

Reputation: 1240

Can I use Firebase Dynamic Link as URL shortener?

Can I use Firebase Dynamic Links as URL shortener for a web application? Will it work even if I have no iOS or Android app? If that is the case, what's the use of dynamicLinkDomain?

Upvotes: 2

Views: 1496

Answers (1)

Oleksiy Ivanov
Oleksiy Ivanov

Reputation: 2504

Yes, you can use Firebase Dynamic Links as URL Shortener.

When creating link specify your deep link. When user taps on the short dynamic link, navigation will happens to deep link. This enough to make link work.

dynamicLinkDomain is domain assigned to your Firebase project. All your Firebase Dynamic links will be hosted on this domain.

Upvotes: 1

Related Questions