ForceReply?
See original GitHub issueHello, I read all the docs and searched through the source code until I found the ForceReply under the Markup module, but I just can’t understand how to use it 😛
I read everything I could on the official Telegram API documentation as well.
Upon receiving a message with this object, Telegram clients will display a reply interface to the user
But I still don’t understand how to achieve this. I’m currently getting a /command
from inside a group chat and I need to send back a message (a question) so the user might answer directly from inside the reply/quote thing.
I tried several approaches using .reply
shortcut and telegram’s sendMessage
with the settings/extra object (with reply_markup and force_reply) and got nowhere.
Thanks 😦
Issue Analytics
- State:
- Created 6 years ago
- Comments:7 (2 by maintainers)
Top Results From Across the Web
Python Telegram API -- how do I use ForceReply?
I would like to have a little Telegram bot in python where a command is issued by the user, the bot asks a...
Read more >telegram.ForceReply — python-telegram-bot 13.15 ...
Use this parameter if you want to force reply from specific users only. Targets: Users that are @mentioned in the text of the...
Read more >ForceReply: Display a reply in telegram.bot - Rdrr.io
Display a reply. Description. Upon receiving a message with this object, Telegram clients will display a reply interface to the user (act as ......
Read more >ForceReply function - RDocumentation
Shows reply interface to the user, as if they manually selected the bot's message and tapped 'Reply'. Defaults to TRUE . selective. (Optional)....
Read more >ForceReply — Pyrogram Documentation
Object used to force clients to show a reply interface. Upon receiving a message with this object, Telegram clients will display a reply...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hey @gugiserman
or
You can find example usage here
@dotcypress Awesome! It worked. Thanks, man.