使用sendPhoto发送动画GIF(Telegram bot)

m52*_*2go 7 telegram telegram-bot php-telegram-bot

我正在尝试使用sendPhoto(Telegram的Bot API)发送带有此请求的动画GIF:

https://api.telegram.org/bot<token>/sendPhoto?chat_id=<chat_id>&photo=http://i.giphy.com/13IC4LVeP5NGNi.gif
Run Code Online (Sandbox Code Playgroud)

该方法有效,我ok:true回来了,但聊天窗口中的图像是移动GIF​​的静态快照.

如何才能显示动画GIF?我应该使用另一种方法吗?

Maa*_*aak 16

您应该使用sendAnimation方法发送没有声音GIF或H.264/MPEG-4 AVC视频.
只需使用animationGIF文件的参数即可.


sendPhoto 仅用于静态图像.


小智 8

使用sendVideo方法!

https://api.telegram.org/bot<token>/sendVideo?chat_id=<chat_id>&video=http://i.giphy.com/13IC4LVeP5NGNi.gif
Run Code Online (Sandbox Code Playgroud)

这会奏效

  • 天哪!太棒了!!!!!!!!!!!!!!!它确实有效。谢谢,不知道为什么我没有尝试。只是将其标记为正确答案。 (2认同)