Pablo León
Pablo León

Reputation: 251

Send animated gif to Telegram in Dialogflow

I'm trying to send gifs as response in my chatbot in Dialogflow. Actually, I send the url by Custom payload This is the Json response:

{
  "telegram": {
    "text": "[alt](path/dog.gif).",
    "parse_mode": "Markdown"
   }
}

But in Telegram looks like other link (user can see the path of the gif above ). Exists other way? I've tried with a Webhook in nodejs too but not success.

Upvotes: 1

Views: 1507

Answers (1)

Alihossein shahabi
Alihossein shahabi

Reputation: 4352

You can use the sendDocument method for sending GIF file.

use the document parameter for your GIF file.

Upvotes: 1

Related Questions