UNPKG
tgram.js
Version:
latest (1.22.0)
1.22.0
Lightweight modern library for telegram bot. use Node.js
tgram.js
/
connect
/
messages
/
messages-send-video.js
9 lines
(8 loc)
•
294 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
telegramFetch
from
"../utility/telegram-fetch.js"
;
export
async
function
sendVideo
(
token, chatId, videoUrl, caption =
""
) {
return
await
telegramFetch.
post
(
`https://api.telegram.org/bot
${token}
/sendVideo`
, {
chat_id
: chatId,
video
: videoUrl, caption }) }