Forcereply Telegram Bot Example
Targets: 1) users that are @mentioned in the text of the Message object; 2) if the bot's message is a reply (has ReplyToMessage), sender of the original message. Example: A user requests to change the bot's language, bot replies to the request with a keyboard to select the new language. Other users in the group don't see the keyboard.
ForceReply (Showing top 1 results out of 315) origin: pengrad/java-telegram-bot-api @Test public void sendMessage() { SendResponse sendResponse = bot.execute
Upon receiving a message with this object, Telegram clients will display a reply interface to the user (act as if the user has selected the bot's message and tapped 'Reply'). This can be extremely useful if you want to create user-friendly step-by-step interfaces without having to sacrifice privacy mode.
ForceReply ¶. class telegram.ForceReply(selective=None, input_field_placeholder=None, *, api_kwargs=None) [source] ¶. Bases: telegram.TelegramObject. Upon receiving a message with this object, Telegram clients will display a reply interface to the user (act as if the user has selected the bot's message and tapped 'Reply').
2 Answers. Sorted by: 7. It may be late to help you, but here it goes. Currently only one reply_markup field is allow and this field must contain only one of the following types: ReplyKeyboardMarkup or ReplyKeyboardHide or ForceReply (see docs)
Currently, can be "mention" (@username), "hashtag" (#hashtag), "cashtag" ($USD), "bot_command" (/start@jobs_bot), "url" ("email" (do-not-reply@telegram.org), "phone_number" (+1-212-555-0123), "bold" (bold text), "italic" (italic text), "underline" (underlined text), "strikethrough
Description. Upon receiving a message with this object, Telegram clients will display a reply interface to the user (act as if the user has selected the bot's message and tapped 'Reply'). Usage. ForceReply (force_reply = TRUE, selective = NULL) Arguments. Examples.
I would like to have a little Telegram bot in python where a command is issued by the user, the bot asks a question and reacts depending on the answer. The official Telegram API mentions that this is possible using ForceReply(), e.g. for creating polls step by step, see here Official Telegram API # ForceReply. I wrote the following code:
Optional. Use this parameter if you want to show the keyboard to specific users only. Targets: 1) users that are @mentioned in the text of the Message object; 2) if the bot's message is a reply (has ReplyToMessage), sender of the original message.Example: A user requests to change the bot's language, bot replies to the request with a keyboard to select the new language.
.
forcereply telegram bot example