if ($text === "Website") {
$txt = 'http://www.dpmptsp.sidoarjokab.go.id';
apiRequest("sendMessage", array('chat_id' => $chat_id, 'parse_mode' => 'html', "text" => $txt));
}
当我点击电报中的按钮时,它只是打印链接。任何建议让按钮只是指向网站而不打印它,我需要再次点击链接?
答案 0 :(得分:1)
不幸的是,它目前不支持点击直接打开,因为Telegram非常关心用户隐私。
如果您使用HTML标记,则可以发送<a href="https://www.sean.taipei>Click Me</a>
之类的链接,可能有更好的用户体验。