FirebaseDynamicLinks Framework Reference

FIRDynamicLinkSocialMetaTagParameters


@interface FIRDynamicLinkSocialMetaTagParameters : NSObject

The Dynamic Link Social Meta Tag parameters.

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

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *title;
  • The description to use when the Dynamic Link is shared in a social post.

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *descriptionText;
  • The URL to an image related to this link.

    Declaration

    Objective-C

    @property (nonatomic, nullable) NSURL *imageURL;
  • A method for creating the Social Meta Tag parameters object.

    Declaration

    Objective-C

    + (nonnull instancetype)parameters;

    Return Value

    Returns an object to be used with FIRDynamicLinkURLComponents to add Social Meta Tag parameters to a generated Dynamic Link URL.

  • A method for creating the Social Meta Tag parameters object.

    Declaration

    Objective-C

    - (nonnull instancetype)init;

    Return Value

    Returns an object to be used with FIRDynamicLinkURLComponents to add Social Meta Tag parameters to a generated Dynamic Link URL.