Skip to main content
Module

x/grammy/mod.ts>Api#sendPhoto

The Telegram Bot Framework.
Extremely Popular
Go to Latest
method Api.prototype.sendPhoto
import { Api } from "https://deno.land/x/grammy@v1.11.1/mod.ts";

Use this method to send photos. On success, the sent Message is returned.

Parameters

chat_id: number | string

Unique identifier for the target chat or username of the target channel (in the format @channelusername)

photo: InputFile | string

Photo to send. Pass a file_id as String to send a photo that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a photo from the Internet, or upload a new photo using multipart/form-data. The photo must be at most 10 MB in size. The photo's width and height must not exceed 10000 in total. Width and height ratio must be at most 20.

optional
other: Other<R, "sendPhoto", "chat_id" | "photo">

Optional remaining parameters, confer the official reference below

optional
signal: AbortSignal

Optional AbortSignal to cancel the request

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