I want to make a very simple project that does this:
An user (let's call him John) opens a Telegram chat with my bot, and inputs this:
User John: /join channel1
My bot responds adding user 'John' to Channel 'channel1'
That's actually all I want. The problem is that Telegram BOT API does not implement any method to add users to groups. I tried to use telegram-cli but 'chat_add_user' only seems to accept adding user to chats, not to groups.
Is there any way I can add an user to a channel like that? (Without manually doing it) or should I forget about this?
Thank you!