当bot电报发送链接到用户php时,如何隐藏链接信息?

时间:2018-02-28 01:16:42

标签: php bots telegram telegram-bot

如何隐藏电报机器人帖子底部的链接信息? 例如,我尝试下面的代码:

<?php

$txt1="<a href='yahoo.com'>yahoo website</a>";
 $url= "https://api.telegram.org/bot".$token."/sendMessage?parse_mode=HTML&chat_id=".$chat_id."&text=".urlencode($txt1);
    file_get_contents($url);


?>

但是

  

它显示帖子底部的雅虎信息

我该如何删除该信息?

请帮帮我。

感谢

1 个答案:

答案 0 :(得分:2)

相关问题