Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to send message from Website To Telegram APP

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

The Problem is I didnt find the complete code and it just open the APP in the mobile

my code is :

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

as you see I didnt find proper command for sending message in href property

for example I found something simillar for adding sticker like :

<a class="tgme_action_button" href="tg://addstickers?set=Saber2">Add Stickers</a>
like image 678
Kamran Asgari Avatar asked Dec 03 '22 16:12

Kamran Asgari


2 Answers

iT's called URI Scheme Hope this one save 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

like image 140
Kamran Asgari Avatar answered Dec 05 '22 06:12

Kamran Asgari


 <a target="_blank" href="https://t.me/share/url?url=Hi,How Are You ?">
  Share Hi,How Are You ? To Telegram
 </a>

enter image description here

like image 36
Omid Soleiman Avatar answered Dec 05 '22 06:12

Omid Soleiman