P
P
Petro Boyko2020-12-08 20:01:24
PHP
Petro Boyko, 2020-12-08 20:01:24

How to send several messages one by one in telegram bot?

How to simultaneously say by pressing / start to send several messages in turn with a different method, say a message, video and picture, how to do it in a loop, and even better, sending via CURL or file_get_contents

Answer the question

In order to leave comments, you need to log in

2 answer(s)
N
nokimaro, 2020-12-08
@nokimaro

1. Curl is better because it has more control and request customization is easier
2. To send requests "without libraries" - go read the documentation https://core.telegram.org/bots/api#making-requests and turn what is described there into code
send message
https://core.telegram.org/bots/api#sendmessage
send photo
https://core.telegram.org/bots/api#sendphoto
send video
https://core.telegram.org/bots/api# send video

F
FastOwl666, 2020-12-09
@FastOwl666

Not at the same time.
Only in turn.
Bot.send_message(message.chat.id, "text")

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question