Mat*_*tin 7 php telegram telegram-bot
我需要用照片发送电报长文本但电报图像标题有200个字符限制.如何使用php和bot发送带有照片的长文本?sendPhoto方法有200个字符限制.我看到一个电报机器人它发送长文本和照片看到我的样本照片.

你可以使用空角色!
只需将parse_modeField 设置为HTMLin sendMessage方法,然后在textField中将图像的URL插入href
使用空字符时将看不到超链接:
<a href="https://www.nafasbekesh.ir/wp-content/uploads/2016/10/img1.jpg">
?</a>
Run Code Online (Sandbox Code Playgroud)
复制空字符供您自己使用.
您可以使用parse_modeMarkdown或HTML 发送标准消息.在文字内容中,您需要发送链接到您的图像.
https://core.telegram.org/bots/api#markdown-style
Some words [/start](https://www.google.ru/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png)
ok.
You will see google's logo in the bottom of message. The blue line on the left of the image indicates that it is the parsing contents of the link
Run Code Online (Sandbox Code Playgroud)