ARTICLE AD BOX
I am using a Telegram bot in a Spring Boot application and I want to automate messaging for my system users.
Is it possible to:
Automatically create a group chat for each user using a Telegram bot
Add the user to that group
Send messages to that group
Check if a group chat already exists for the user, and if so, reuse it instead of creating a new one
My goal is that each user receives messages through their own Telegram group chat. If the group already exists, the bot should just send messages there instead of creating a duplicate group.
