TeleBotHost
1.14K subscribers
29 photos
4 files
55 links
Download Telegram
If you notice any errors or issues, please let us know β€” we’ll fix them right away!

πŸš€ Also New Feature Coming Soon: Webhooks β€” Execute any command instantly by simply calling a webhook URL!
6❀3😁32πŸ”₯11
Hey everyone πŸ‘‹

Sorry to disturb you all, but could you please share any errors or issues you’ve faced while using our website or the TBL language?

So we can start resolving those issues
❀2😁21
TeleBotHost
Really no issues ? Nobody reported πŸ₯²
A major bug noticed by us

Bot.runCommand() only works on message update

We will update that tomorrow so it can work for all types of updates
104❀2🀩2
TeleBotHost
A major bug noticed by us Bot.runCommand() only works on message update We will update that tomorrow so it can work for all types of updates
Sorry for delay but

We planned to fix + add new things togather that's why need some time to test and made docs
4❀2πŸ—Ώ1
🚨 We've pushed a new update! It might have some minor bugs and could occasionally show the same error multiple times.

If you notice any such issues, please notify us. Your feedback is highly appreciated! πŸ™

We will notify about new things once the modified docs are ready.

If you are limited can't message use @Soumya_feed_back_bot to notify
22πŸ₯°1🀯1
TeleBotHost
Finally we have some updates now Updated things 1. New features and fixes 2. Api.xxx chained feature 3. request object in Webhook Upcoming fixes and current Bugs
We now support dynamic commands

It's idea credits goes to an another platform TeleBot Creator

And we support Webapp features with This
❀3🀯111
If anybody have and issues and questions fell free to tell us in commets
❀11
What features need next ??
❀1πŸ—Ώ11
😭 Brothers! We’ve fixed bugs and added exciting new features to our platform!

But we need your support to keep it running smoothly and grow stronger πŸ’ͺ

Here’s how you can help:

1️⃣ Make a post about us and share with your network
2️⃣ Or share our platform codes – this way both your channel and our platform grow together!
3️⃣ Or just share this post with friends or community

Let’s keep building a stable, long-lasting community together!
Please open Telegram to view this post
VIEW IN TELEGRAM
❀33🀯11
We have 2 new bots on our Bot store

https://console.telebothost.com/#store
❀2🀩1🀝1
Forwarded from TBL Codes
let content = "Hello World! This is a test file.";
let buffer = Buffer.from(content, 'utf8');

Api.sendDocument({
document: buffer,
filename: "test.txt",
caption: "βœ… File from buffer"
});

TBL now support direct file sending as a <Buffer>
❀332
πŸ€– @TgDocsXBot β€” Instantly search Telegram documentation for quick and accurate help.
3😁22
TeleBotHost pinned Β«πŸš€ How to Host Telegram Bots for Free | Full Guide (2025 ) Using Telebot Host Learn how to host your Telegram bots 24/7 for FREE using TeleBot Host πŸŽ₯ Watch basic video now on YouTube: πŸ‘‰ How to Host Telegram Bots for FREE | Full Guide (2025) Using TeleBot…»
Now you can jump straight from the error logs to editing your code instantly!

In the command tab, only the first load takes time; subsequent loads will be instant.
8❀54🀩1
How to clone bot in TeleBotHost

const res = await TBL.clone({
  bot_id: bot.id,//bot id required
  start_now: true,//if want to clone and start now , optinal
  bot_token: '12345:abc', //start_now needs bot token for which bot need to start , optional
  all_prop: true, //true if want all prop to copy only bot prop supported, optional
  bot_props: {
    theme: 'dark', //prop 1
    welcome: 'Welcome to my new bot!' //prop2
  } //Custom prop to pass , auto type detection , optional
});

Bot.inspect(res)//check the response

/*
{
ok: true,
result: {
bot_id: 544xxxxx,
bot_name: 'Tbl Test',
owner: 'mymail@telebothost.com',
commands_count: 9
}
}
*/

How to tranfer bot in TeleBotHost

const result = await TBL.transfer({
bot_id: bot.id,
to_mail: 'newuser@telebothost.com'
});

//TBL.clone and TBL.transfer are both async need await


Docs : https://telebothost.com/docs/#class-tbl
❀4πŸ‘22😁1
Suggest some features to add πŸ™‚
Please open Telegram to view this post
VIEW IN TELEGRAM
❀21
You don’t need to use modules.crypto.xxx β€” you can simply use crypto.xxx.
Since the crypto library is one of the most commonly used, it’s included by default.

And also form-data library also default as FormData so you can use FormData.xxx

https://telebothost.com/docs/#module-crypto

Update: https://telebothost.com/docs/#crypto-formdata-update
53🀝2πŸ†’1