Telegram bot不会发送超链接标题

时间:2018-03-03 23:53:07

标签: php api telegram telegram-bot

我的电报机器人不会在照片,视频,语音标题中发送超链接。

这很奇怪,因为超链接适用于纯文本。

以下是sendPhoto方法的代码

<?php

    $p1="<a href=google.com>google</a>";
    $url= "https://api.telegram.org/bot".$token."/sendPhoto?parse_mode=HTML&chat_id=".$chat_id."&photo=".$photo."&caption=".urlencode($p1);
    file_get_contents($url);

?>

它当前发送照片并发送标题但没有任何超链接:(

以下代码适用于sendMessage方法

<?php

    $url= "https://api.telegram.org/bot".$token."/sendMessage?parse_mode=HTML&chat_id=".$chat_id."&text=".urlencode($p1);
    file_get_contents($url);

?>

sendMessage正常......

我回复sendPhoto

<?

"caption_entities":[{"offset":0,"length":5,"type":"text_link","url":"http://google.com/"}

?>

我该如何解决?

是bossfather中的任何配置吗?

1 个答案:

答案 0 :(得分:1)

标题中的富文本是新功能&amp;只有官方电报的最后一个Android版本(不是Mobogram等)才能显示它。

参见例如: enter image description here 你看到this post上面的图片了吗?