Add Stickers & Links
Learn how to add Stickers and Attachment Links
Create Sticker Instance
Sticker sticker = new Sticker("PATH_TO_STICKER_IMAGE");Add Sticker to Story Content
StoryContent content = new StoryContent("PATH_TO_IMAGE_FILE", false);
// StoryContent content = new StoryContent("PATH_TO_VIDEO_FILE", true);
content.SetSticker(sticker);// Pass sticker instance created aboveAdd Attachment Link
StoryContent content = new StoryContent("PATH_TO_IMAGE_FILE", false);
// StoryContent content = new StoryContent("PATH_TO_VIDEO_FILE", true);
content.SetAttachmentUrl("https://www.google.com");// Pass valid web urlExample
Last updated
Was this helpful?