sendVideoNote {telegram.bot} | R Documentation |
Send video messages
Description
Use this method to send video messages.
Usage
sendVideoNote(
chat_id,
video_note,
duration = NULL,
length = NULL,
disable_notification = FALSE,
reply_to_message_id = NULL,
reply_markup = NULL
)
Arguments
chat_id |
Unique identifier for the target chat or username of the target channel. |
video_note |
Video note file to send. Pass a file_id as String to send a video note that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a video note from the Internet, or upload a local video note file by passing a file path. |
duration |
(Optional). Duration of sent audio in seconds. |
length |
(Optional). Video width and height. |
disable_notification |
(Optional). Sends the message silently. Users will receive a notification with no sound. |
reply_to_message_id |
(Optional). If the message is a reply, ID of the original message. |
reply_markup |
(Optional). A Reply Markup parameter object, it can be either: |
Details
You can also use it's snake_case equivalent send_video_note
.
Examples
## Not run:
bot <- Bot(token = bot_token("RTelegramBot"))
chat_id <- user_id("Me")
video_note_url <- "http://techslides.com/demos/sample-videos/small.mp4"
bot$sendVideoNote(
chat_id = chat_id,
video_note = video_note_url
)
## End(Not run)
[Package telegram.bot version 3.0.0 Index]