Skip to main content
Module

x/grammy/mod.ts>Api#uploadStickerFile

The Telegram Bot Framework.
Very Popular
Latest
method Api.prototype.uploadStickerFile
import { Api } from "https://deno.land/x/grammy@v1.22.4/mod.ts";

Use this method to upload a file with a sticker for later use in the createNewStickerSet, addStickerToSet, or replaceStickerInSet methods (the file can be used multiple times). Returns the uploaded File on success.

Parameters

user_id: number

User identifier of sticker file owner

sticker_format: "static" | "animated" | "video"

Format of the sticker, must be one of “static”, “animated”, “video”

sticker: InputFile

A file with the sticker in .WEBP, .PNG, .TGS, or .WEBM format. See https://core.telegram.org/stickers for technical requirements.

optional
signal: AbortSignal

Optional AbortSignal to cancel the request

Official reference: https://core.telegram.org/bots/api#uploadstickerfile