Telegram Bot Send All (Text, Photo, Video, etc)

295 views
Skip to first unread message

Marco Antonio Bianchi

unread,
Sep 15, 2022, 7:59:29 AM9/15/22
to Google Apps Script Community
Hello everybody,
i am trying to send any kind of object from telegram bot.
message and photo is okay, video and other does not work.
can you help me?
thank you

Message has been deleted

Marco Antonio Bianchi

unread,
Sep 15, 2022, 8:01:29 AM9/15/22
to Google Apps Script Community
//Funzioni che inviano un messaggio
function InviaVideoTypeA(ChatID, StringaVideoFile) {
  var Url = TelegramUrl + "/sendVideo?chat_id=" + ChatID + "&video="+ StringaVideoFile;
  var response = UrlFetchApp.fetch(Url);
}


function InviaVideoTypeB(ChatID, StringaVideoFile) {
  var data = {
    method: "post",
    payload: {
      method: "sendVideo",
      chat_id: String(ChatID),
      video: String(StringaVideoFile)
    }
  };
  UrlFetchApp.fetch(TelegramUrl + '/', data);
}

Marco Antonio Bianchi

unread,
Sep 15, 2022, 8:03:13 AM9/15/22
to Google Apps Script Community
the example sends a video, but it doesn't work.
can you help me?
Il giorno giovedì 15 settembre 2022 alle 13:59:29 UTC+2 Marco Antonio Bianchi ha scritto:
Reply all
Reply to author
Forward
0 new messages