Jump to top

DynamicLinkSocialParameters

interface

The DynamicLinkSocialParameters interface provides functionality to add additional social meta-data to the URL.

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

Properties

descriptionText

</>

The description to use when the Dynamic Link is shared in a social post.

descriptionText: undefined | string;

imageUrl

</>

The URL to an image related to this link.

imageUrl: undefined | string;

title

</>

The title to use when the Dynamic Link is shared in a social post.

title: undefined | string;