使用
时出错了parse_mode = HTML
sendMessage
中的工作当前sendPhoto
中的机器人错误地显示html格式链接。
sendMessage
<?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);
?>
&#13;
它适用于sendPhoto
<?php
$url= "https://api.telegram.org/bot".$token."/sendphoto?parse_mode=HTML&chat_id=".$chat_id."&photo=".$photo."&caption=".urlencode($txt1);
file_get_contents($url);
?>
&#13;
它只是将文字显示为标题而没有任何链接。 我的代码有什么问题? 请帮我。 谢谢