# Add Stickers & Links

Stickers can be added to give extra information to share media. These can be mascots of your game, game title with your own custom font, etc.

Stickers can be added on top of image or video that is being shared.

### Create Sticker Instance

```csharp
Sticker sticker = new Sticker("PATH_TO_STICKER_IMAGE");
```

{% hint style="info" %}
Image passed can be of JPG or PNG format.
{% endhint %}

### Add Sticker to Story Content

```csharp
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 above
```

## Add Attachment Link

Adding link to the sharing content lets users go to the target link along with the sharing content.

{% hint style="info" %}
Adding links feature to sharing content needs an approval from Instagram Team. [More Info here.](https://help.instagram.com/contact/605050879855497?fbclid=IwAR1xLRtNHLGxOFu77Rhi8dUOB7xv-lDp6CvwjgMOOaa-tG0BJK_XbMsDdB4)
{% endhint %}

```csharp
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 url
```

## Example

```csharp
using VoxelBusters.InstagramKit;

private void Share(string contentFilePath, bool isVideoContent, string stickerPath, string attachmentUrl)
{
    StoryContent content = new StoryContent(contentFilePath, isVideoContent);

    // Create Sticker Instance
    Sticker sticker = new Sticker(stickerPath);
    
    // Set Sticker to the sharing content
    content.SetSticker(sticker);
    
    // Set Attachment Url
    content.SetAttachmentUrl(attachmentUrl);
            
    // Share the Content
    InstagramKitManager.Share(content, OnShareComplete);
}

private void OnShareComplete(bool success, string error)
{
	string message  =  success ? "Successfully Shared" : "Failed to share " + error;
	Debug.Log(message);
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://assetstore.instagramkit.voxelbusters.com/api/add-stickers-and-links.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
