How to send a message from a website to Telegram APP

I have a share button on my website and I want to send a specific message to Telegram APP contacts (when I open the site in mobile)

The problem is I didn't find the complete code and just opened the APP in mobile

my code:

<a href="tg://" id="telegram_share" class="mobileShare" title="inviteFriends" alt="telegram_share"></a>

      

as you can see I did not find the correct command to send the message in the href property

For example, I found something simillar to add a sticker like:

<a class="tgme_action_button" href="tg://addstickers?set=Saber2">Add Stickers</a>

      

+3


source to share


2 answers


iT is called URI Scheme Hope this saves someone else's time :)

<a href="tg://msg?text=your MsG!" id="telegram_share" class="mobileShare" title="inviteFriends" alt="telegram_share"></a>

      



right Now it only works on IOS

+7


source


USE API

People can use telegram.me/<your-username>



This is the best way to do it at the moment.

0


source







All Articles