Any way to automate posting on Telegram?

Cryptology

Junior Member
Joined
May 31, 2018
Messages
190
Reaction score
92
Hello!
Do you guys know any tool or way to automate posting on Telegram? I'd just need a bot that could post automatically blog posts on a telegram channel.
Any help is welcome!
 
blog2social used to be helpful back in time for me, I believe you can also find something on github if you want something free and are willing to spend some time learning how to tweak it.
 
I use wptelegram
https://wordpress.org/plugins/wptelegram/simple free (PRO too for more features)
and supports proxy

Looks awesome.
I've created some bots and manage them with a Google Spreadsheet which is pretty shitty but I didn't want to go any further because is simple for what I need (essentially notification messages for the users of certain channels of my own), as simple as writing the text in cell and it autopublishes in multiple channels in a second.

If interested here is my Google Scripts for Spreadsheets code

JavaScript:
function sendNotification() {
      var ss = SpreadsheetApp.getActiveSpreadsheet();
      var sheet = ss.getActiveSheet();
      
      //Get Active cell
      var mycell = ss.getActiveSelection();
      var cellcol = mycell.getColumn();
      var cellrow = mycell.getRow();
 
      var range = sheet.getRange(cellrow,2);
      var data = range.getValue();
      var text = "Message:"+data;
      
      var base = "https://api.telegram.org/Bot_NAME:Bot_APIKEY/sendMessage?text="+text+"&chat_id=";
      var channel_id = "CHANNELID";
      var column_no = XX; 
    
      if (cellcol == column_no && sheet.getName() == "Sheet_NAME" && mycell.getValue() == "GO")
      {
        var url = base+"-"+channel_id;
        var response = UrlFetchApp.fetch(url);
        mycell.setValue("");
      }
  //End sendNotification
  }

function createSpreadsheetEditTrigger() { 
      var ssss = SpreadsheetApp.getActive();

  ScriptApp.newTrigger('sendNotification')
    .forSpreadsheet(ssss)
    .onEdit()
    .create();
}

To create a new bot is as simple as this:
https://core.telegram.org/bots#3-how-do-i-create-a-bot
If you get the idea, you can go as far as you want
 
Automation in telegram is not possible so post manually for best result
 
You can schedule your post in software easily Just hold arrow for send then you will be able schedule post.

Just my 2cents
 
I haven't found any automation tool for telegram i anyone have found it plz dm me
 
Back
Top