如何在机器人电报向用户 php 发送 link 时隐藏 link 信息?
How hide link info when bot telegram sends a link to user php?
如何在电报机器人的 post 底部隐藏 link 信息?
例如我尝试下面的代码:
<?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);
?>
但是
it shows yahoo info at bottom of the post
如何删除该信息?
请帮助我。
谢谢
如何在电报机器人的 post 底部隐藏 link 信息? 例如我尝试下面的代码:
<?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);
?>
但是
it shows yahoo info at bottom of the post
如何删除该信息?
请帮助我。
谢谢