I use pyTelegramBotAPI. Can you please tell me how can I send a GIF user via url from the Internet? If I send as bot.send_photo(message.chat.id, '<ссылка на GIF>') just sends a still image.

  • Try to send as a file - ishidex2
  • Yes indeed! Such a structure works! bot.send_document (message.chat.id, '<link to GIF>') - Garison

0