我的电报机器人不会在照片,视频,语音标题中发送超链接。
这很奇怪,因为超链接适用于纯文本。
以下是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中的任何配置吗?
答案 0 :(得分:1)
参见例如: 你看到this post上面的图片了吗?