Jump to top

DynamicLinkParameters

interface

The DynamicLinkParameters interface provides access to the Dynamic Link builder classes used to configure a created link.

Example
 const link = await firebase.dynamicLinks().buildLink({
   link: 'https://invertase.io',
   domainUriPrefix: 'https://xyz.page.link',
 });

Properties

analytics

</>

Access Google Analytics specific link parameters.

android

</>

Access Android specific link parameters.

domainUriPrefix

</>

Domain URI Prefix of your App. This value must be your assigned domain from the Firebase console, (e.g. https://xyz.page.link). The domain URI prefix must start with a valid HTTPS scheme (https://).

domainUriPrefix: string;

ios

</>

Access iOS specific link parameters.

itunes

</>

Access iTunes Connect specific link parameters.

link

</>

The link the target app will open. You can specify any URL the app can handle, such as a link to the app’s content, or a URL that initiates some app-specific logic such as crediting the user with a coupon, or displaying a specific welcome screen. This link must be a well-formatted URL, be properly URL-encoded, and use the HTTP or HTTPS scheme.

link: string;

navigation

</>

Access navigation specific link parameters.

otherPlatform

</>

Access other platform specific link parameters.

social

</>

Access social specific link parameters.