DynamicLinkParameters
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.
analytics: DynamicLinkAnalyticsParameters;
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;
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.
navigation: DynamicLinkNavigationParameters;