Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase dynamic links - custom suffix

I made a simple python script to generate firebase dynamic links for my app using POST API https://firebase.google.com/docs/dynamic-links/rest

However, in web UI I can set custom link address (i.e. example.app.goo.gl/customlinkname), while using API address seems to be always auto-generated.

Is there such a feature using POST API?

I tried to set "option": CUSTOM with customSuffix parameter, however response was that option CUSTOM is not supported.

like image 724
Richard Roe Avatar asked Nov 07 '18 13:11

Richard Roe


People also ask

How do I customize my URL on Firebase?

Open the Dynamic Links page of the Firebase console. If you haven't used Dynamic Links before, click Get Started. Otherwise, click Add URL prefix from the drop-down menu. Then, complete the setup wizard, specifying the domain and path prefix you want to use when prompted.

How do I create a dynamic link in Firebase?

You create a Dynamic Link either by using the Firebase console, using a REST API, iOS or Android Builder API, or by forming a URL by adding Dynamic Link parameters to a domain specific to your app. These parameters specify the links you want to open, depending on the user's platform and whether your app is installed.

How many dynamic links can I create Firebase?

To receive Dynamic Links in your app, see the documentation for iOS, Android, C++, and Unity. Requests are limited to 5 requests/IP address/second, and 200,000 requests/day. If exceeded, then the response will return HTTP error code 429.


1 Answers

Nope -- this feature is not available using the REST or Client SDKs. Only for Dynamic Links that you create using the Firebase Console.

like image 165
Todd Kerpelman Avatar answered Oct 30 '22 01:10

Todd Kerpelman