Private channel telegram unique invite link

I am creating a private channel in telegram. I want to know if there is a way to create a unique invite link that I can provide to people I want to join my channel. unique as a one-off. in fact telegram gives you the link to invite, but it is always the same, so if I give it to a person he can give to anyone. I need a method to avoid this. i tried some url shortening services to hide the invite link but they still show the iniztial invite link at the end. any suggestion?

I've tried http://once.ly/index.html

+4


source to share


2 answers


There is currently no way to create a unique invitation link.

But if I were you, I would create a bot, send the link through the bot using the built-in button that hides the link behind the text by default.



For example, you give your user a link, for example t.me/bot?start=channel_link

, and when your bot received it /start channel_link

, send a message with an embedded button with a parameter url

.

+4


source


Try this from the documentation .



<a href="https://t.me/botname_bot?start=vCH1vGWJxfSeofSAs0K5PA">start=channel_link</a>

      

0


source







All Articles