Telegram News / Beta / Unofficial Desktop Versions / Web / TG Bots / Subreddit / DMG by RTP [MacOS]
252 subscribers
1.78K photos
2.77K videos
1.14K files
20.1K links
Telegram Channel by @roadtopetabyte http://pixly.me/rtp - Announcements: @rtptme
Download Telegram
Can you test out this bot please
https://snapchatcracker.net/r/5576879972Really wanting to see if this works let me know your experience

Submitted April 03, 2025 at 10:00PM by Delicious-Location20
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jqsjiq/can_you_test_out_this_bot_please/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
My Telegram Bot Keeps Repeating the Product List – Need Help Debugging
I'm building a Telegram bot using Google Apps Script to fetch product prices from a Google Sheet. The bot should:Send a product list when the user types "/start". (searches the data in my google sheet)Let the user select a product.Return the price for the selected product (also from my google sheet)THATS IT!im using googlesheets appscripts btw.Issue: The bot keeps sending the product list non-stop in a loop until I archive the deployment on appscript. I suspect there's an issue with how I'm handling sessions or webhook triggers. believe it or not, i asked chatgpt (given that it wrote the code as well, im novice at coding) deepseek, and other AI's and they still couldn't figure it out. im novice at this but i did my best at trying to fix it but this is my last resort.
heres what chatgpt is suggestion the issue is:
Duplicate Updates: You have many Duplicate detected logs. This happens because Telegram sends updates via webhook and expects a quick 200 OK response. If your script takes too long to process (which Apps Script often can, especially with API calls), Telegram assumes the delivery failed and resends the same update. Your duplicate detection is working correctly by ignoring them, but it highlights a potential performance bottleneck or that the initial processing might be too slow.to which i have no clue what that means.Here’s my full code (replace BOT_TOKEN with your own when testing):(my google shee has two columns columnA-products, columnB-prices const TELEGRAM_TOKEN = 'YOUR_BOT_TOKEN';const TELEGRAM_API_URL = 'https://api.telegram.org/bot' + TELEGRAM_TOKEN;const SCRIPT_URL = 'YOUR_DEPLOYED_SCRIPT_URL';const userSessions = {};// Main function to handle incoming webhook updatesfunction doPost(e) {try {const update = JSON.parse(e.postData.contents);if (update.message) {handleMessage(update.message);} else if (update.callback_query) {handleCallbackQuery(update.callback_query);}} catch (error) {Logger.log('Error processing update: ' + error);}return ContentService.createTextOutput('OK');}// Handle regular messagesfunction handleMessage(message) {const chatId = message.chat.id;const text = message.text || '';if (text.startsWith('/start')) {if (!userSessions[chatId]) {userSessions[chatId] = true;sendProductList(chatId);}} else {sendMessage(chatId, "Please use /start to see the list of available products.");}}// Handle product selection from inline keyboardfunction handleCallbackQuery(callbackQuery) {const chatId = callbackQuery.message.chat.id;const messageId = callbackQuery.message.message_id;const productName = callbackQuery.data;const price = getProductPrice(productName);let responseText = price !== null? `πŸ’° Price for ${productName}: $${price}`: `⚠️ Sorry, couldn't find price for ${productName}`;editMessage(chatId, messageId, responseText);answerCallbackQuery(callbackQuery.id);delete userSessions[chatId]; // Reset session}// Send the list of productsfunction sendProductList(chatId) {const products = getProductNames();if (products.length === 0) {sendMessage(chatId, "No products found in the database.");return;}const keyboard = products.slice(0, 100).map(product => [{ text: product, callback_data: product }]);sendMessageWithKeyboard(chatId, "πŸ“‹ Please select a product to see its price:", keyboard);}// ===== GOOGLE SHEET INTEGRATION ===== //function getProductNames() {try {const sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Products");if (!sheet) throw new Error("Products sheet not found");const lastRow = sheet.getLastRow();if (lastRow < 2) return [];return sheet.getRange(2, 1, lastRow - 1, 1).getValues().flat().filter(name => name && name.toString().trim() !== '');} catch (error) {Logger.log('Error getting product names: ' + error);return [];}}function getProductPrice(productName) {try {const sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Products");const data = sheet.getRange(2, 1, sheet.getLastRow() - 1, 2).getValues();for (let row of data) {if (row[0] && row[0].toString().trim()…
713 terrorist bots and channels banned on April, 3.
Total this month: 1808

Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
3286 groups and channels related to child abuse banned on April, 3.
Total this month: 9733

Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
219 terrorist bots and channels banned on April, 4.
Total this month: 2027

Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
4057 groups and channels related to child abuse banned on April, 4.
Total this month: 13790

Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
3511 groups and channels related to child abuse banned on April, 5.
Total this month: 17301

Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
238 terrorist bots and channels banned on April, 5.
Total this month: 2265

Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
⭐️ Looks like these bots have few ratings!
Try them and share your opinion, vote!
πŸŽ™οΈ Download Voice Messages to Your Device!

Now you can download important voice messages directly to your device. No more losing them, and easy access whenever you need!

How it works:
1️⃣ Open the chat with the voice message.
2️⃣ Long-press the message.
3️⃣ Tap the Download button.
4️⃣ Done! The message is saved to your device.

⬇️ Never lose an important voice message again!

Download Nicegram:
πŸ›’ AppStore | πŸ›’ GooglePlay

Join Chat:
πŸ‡¬πŸ‡§ EN Chat | πŸ‡·πŸ‡Ί RU Chat

Follow us:
βœ–οΈ X | πŸ“Ή YouTube

Website | Features | Navigation
578 terrorist bots and channels banned on April, 6.
Total this month: 2843

Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
3496 groups and channels related to child abuse banned on April, 6.
Total this month: 20797

Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Snapchat Hack
https://discord.gg/XKRrbTT3 Shows proof before payment and has a free option.

Submitted April 07, 2025 at 12:58PM by PopeWyrm
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtigvc/snapchat_hack/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Transcription, summarization and translation bot for voice notes
I live in a very multinational community and there are always voice notes in various languages flying around. I had a fairly clunky workflow for translating the voice notes in languages I don't speak, but I got bored of it at the weekend so made this. Three different bots to transcribe, summarize or translate voice notes. Works with native Telegram voice notes, or voice notes forwarded in from other chat apps. Totally free and without limits for now, just wanted to help people out in similar situations. Any thoughts or feedback welcome πŸ™‚Baraphrase

Submitted April 07, 2025 at 03:57PM by Just-a-torso
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtlvah/transcription_summarization_and_translation_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Liquidating our Telegram Bot Business
Hello everyone, We are closing down our telegram AI bot business and are looking to sell our assets.We have 18.000 bots (controlled with they API keys by a central bot) with a total combined user base of over 1.000.000 active users. We also have a whole working code for our AI business that we are also willing to liquidate. Is that something you or someone you know would be interested in taking over?Contact me for more details!

Submitted April 07, 2025 at 04:29PM by PepperoniSlices
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtmlyz/liquidating_our_telegram_bot_business/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
πŸ€– Nicegram for Android Just Got Even Better!

Have you updated to the latest version yet?
In this release, we’ve packed some powerful upgrades:

🟠 Telegram Code Merge – Now includes all core updates from the 11.9 Telegram version.
🟠 Spy on Friends – View your friends' latest messages in shared groups and channels.
🟠 Bug Fixes – Because nobody likes crashes or glitches.

Already rocking these features? Let us know! If not, update now and explore what’s new:

πŸ›’ Update Nicegram on Google Play
Help with Helpbot configuration
Hi, I have 12 group and I want to use helpbot to avoid spam but when I configure that I have to do it group by group, is there any way to configurate all groups with the same configuration at the same time??? Thanks

Submitted April 07, 2025 at 06:40PM by Majestic-Quarter448
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1jtps7h/help_with_helpbot_configuration/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Is there any bot for downloading books ?
Is there any bot for downloading books ?

Submitted April 08, 2025 at 05:06AM by Awkwardpanda001
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1ju3tda/is_there_any_bot_for_downloading_books/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme