2016-09-19 110 views
4

我需要发送带照片的电文长文本但电报图像标题有200个字符限制。如何使用php和bot发送带有照片的长文本? sendPhoto方法有200个字符限制。 我看到一个电报机器人发送长文本和照片看我的示例照片。使用php bot发送带电子邮件的长信息

this is a sample image send to telegrem

回答

4

您可以parse_mode降价或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 
+0

谢谢亲爱的德米特里我使用你的方法之前,但使用时[/开始](https://www.google.ru/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png)显示开始我的消息的话我想要不显示它,只显示图像和我的信息 – stackUser

+0

您可以设置一些其他字符作为链接文本。 如何使用50%的图像获得相同的消息以进行调试? – Dmitry

3

您可以使用空字符!

sendMessage方法只需设置parse_mode场到HTML, 然后在text字段中插入图片的URL为HREF

超链接将无法看到当您使用空字符:

<a href="https://www.nafasbekesh.ir/wp-content/uploads/2016/10/img1.jpg"> 
⁠</a> 

复制空白字符供您自己使用。