如何从网站向Telegram APP发送消息

时间:2015-06-27 19:23:44

标签: javascript html mobile sendmessage telegram

我的网站上有一个分享按钮,我想向Telegram APP联系人发送特定消息(当我在手机中打开网站时)

问题是我找不到完整的代码,只是在移动设备中打开APP

我的代码是:

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

如你所见,我没有找到在href属性中发送消息的正确命令

例如,我发现了一些类似于添加贴纸的东西:

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

3 个答案:

答案 0 :(得分:7)

iT称为URI Scheme 希望这个能节省别人的时间:)。

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

现在它只适用于IOS

答案 1 :(得分:0)

使用API​​

人们可以使用 telegram.me/<your-username>

这是目前最好的方法。

答案 2 :(得分:-1)

 <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