在带有图像的电报机器人中发送消息

在带有图像的电报机器人中发送消息

本文介绍了在带有图像的电报机器人中发送消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 php 上有电报机器人代码,并回复通过 replyWithMessage 方法发送的消息.

I have telegram-bot code on php, and reply messages sending by replyWithMessage method.

这里的所有命令:

 $this->replyWithMessage(['text' => $item['title']. "\n\n" . $url]);

如何在文本前添加一些预览图像?

How can i add some preview image before text?

推荐答案

您可以使用 /sendphoto 并设置出现在图像下方的 caption.
https://core.telegram.org/bots/api#sendphoto

You can use /sendphoto and set the captionwhich appears under an image.
https://core.telegram.org/bots/api#sendphoto

这篇关于在带有图像的电报机器人中发送消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 03:48