fa
Feedback
Bots Bots Bots 🇮🇳

Bots Bots Bots 🇮🇳

رفتن به کانال در Telegram

These are My Bots. Not a pro developer, just does some crap coding. All I want is to help others. Hope these might help you. @odysseusmax

نمایش بیشتر
کشور مشخص نشده استفناوری و برنامه‌ها6 714

📈 تحلیل کانال تلگرام Bots Bots Bots 🇮🇳

کانال Bots Bots Bots 🇮🇳 (@od_bots) در بخش زبانی انگلیسی بازیگری فعال است. در حال حاضر جامعه شامل 14 591 مشترک است و جایگاه 6 714 را در دسته فناوری و برنامه‌ها دارد.

📊 شاخص‌های مخاطب و پویایی

از زمان ایجاد در невідомо، پروژه رشد سریعی داشته و 14 591 مشترک جذب کرده است.

بر اساس آخرین داده‌ها در تاریخ 27 مارس, 2025، کانال فعالیت پایداری دارد. در ۳۰ روز گذشته تغییر اعضا برابر -83 و در ۲۴ ساعت گذشته برابر 0 بوده و همچنان دسترسی گسترده‌ای حفظ شده است.

  • وضعیت تأیید: تأیید نشده
  • نرخ تعامل (ER): میانگین تعامل مخاطب 0% است و در ۲۴ ساعت نخست پس از انتشار، محتوا معمولاً N/A% واکنش نسبت به کل مشترکان کسب می‌کند.
  • دسترسی پست‌ها: هر پست به طور میانگین 0 بازدید دریافت می‌کند. در اولین روز معمولاً 0 بازدید جمع‌آوری می‌شود.
  • واکنش‌ها و تعامل: مخاطبان به‌طور فعال حمایت می‌کنند؛ میانگین واکنش به هر پست 0 است.

📝 توضیح و سیاست محتوایی

نویسنده این فضا را محل بیان دیدگاه‌های شخصی توصیف می‌کند:
These are My Bots. Not a pro developer, just does some crap coding. All I want is to help others. Hope these might help you. @odysseusmax

به لطف به‌روزرسانی‌های پرتکرار (آخرین داده در تاریخ 28 مارس, 2025)، کانال همواره به‌روز و دارای دسترسی بالاست. تحلیل‌ها نشان می‌دهد مخاطبان به‌طور فعال با محتوا تعامل دارند و آن را به نقطه اثرگذاری مهم در دسته فناوری و برنامه‌ها تبدیل کرده‌اند.

14 591
مشترکین
اطلاعاتی وجود ندارد24 ساعت
-327 روز
-8330 روز
آرشیو پست ها
One more...

Just a yearly checkup message 😅

@gdriveit_bot is transferred to a new username @googledriveit_bot for the time being.

#uloadit_bot RIP 😔 For the time being, bot has been moved to another username @UloaditV2Bot.
#uloadit_bot RIP 😔 For the time being, bot has been moved to another username @UloaditV2Bot.

I used to attend all the PM's I get, but guys like these are just annoying. Be a bit more educated about the things you do. I
I used to attend all the PM's I get, but guys like these are just annoying. Be a bit more educated about the things you do. IG, I have to be more "practical" 🤷‍♂️.

☹
+1

@Invidious_bot Officially Dead ⚰⚰😴😴
@Invidious_bot Officially Dead ⚰⚰😴😴

😕

Hello, this is Telegram Support. We have received a notice from legal@ralegal.co.in The complainant believes your bot https://t.me/Invidious_bot is infringing its copyright. Telegram does not process requests related to private content. But sticker sets, channels, and bots on Telegram are publicly available. When we receive a complaint regarding the legality of public content, we perform the necessary legal checks and take it down when deemed appropriate: https://telegram.org/faq#q-wait-0-o-do-you-process-take-down-requests-from-third-parties We kindly ask you to contact the complainant through email immediately.

Bot is up.

@uloadit_bot Bot will stay offline until further notice.

I have few friends who do not use Telegram, for some reason 🤷‍♂. And occasionally few of them approaches me to get this film/show they wants to watch. Since they don't use telegram generating links for the file is the only option. They are my friends and I care about them, so I'll get the file and give them the link. I'm quite lazy and even though I care about my friends, repeating the same process of finding the file generating the link is not what i enjoy. So i was thinking for a solution, the first thing that came to my mind is to introduce them to any of the google drive indexing apps. But I had access to quite a lot of Telegram files, so I thought of why not create a telegram indexer 😅. I took the weekend to build one such app, and i hope it will fix my issue. 😅😅. https://github.com/odysseusmax/tg-index Take a look at it and if you find it helpful or if you think its cool, give a 🌟.

@uloadit_bot Bot was down for some time, cause maintenance did not go as expected. Now its back to normal. 👉Fixed some internal bugs. 👉Some speed improvement. If you face any issues report @odysseusmax.

@Gdriveit_bot As an experimental feature, added team drive support. Read /help to know how. Might be bugged, if you find issues please report @odysseusmax.

Up 🙈, but idk if its stable or not 😢😢

Just 20 lines of code. Python: from flask import Flask, request import requests import json app = Flask('app') @app.route('/<token>', methods=['POST']) def handle_tg(token): update = request.get_json() message=update.get('message') if message: send_message_params = { 'chat_id':message['chat']['id'], 'text':json.dumps(message, indent=4), 'reply_to_message_id':message['message_id'] } r = requests.post( url=f'https://api.telegram.org/bot{token}/sendMessage', json=send_message_params ) return 'OK' app.run(host='0.0.0.0', port=8080) --------------------------------------------------------- PHP (Credits: @spechide): <?php $token = $_REQUEST["token"]; $content = file_get_contents('php://input'); $update = json_decode($content, true); if (isset($update["message"])) { $chat_id = $update["message"]["chat"]["id"]; file_get_contents("https://api.telegram.org/bot$token/sendMessage?chat_id=$chat_id&text=$content"); }

New Bot 😝😝 @ShowUpdateJsonBot

@subtitle_dl_bot Bot is down, and will stay as it is until further notice. 😢😔

@uloadit_bot Update! Support for screenshot generation for video files has been dropped. Use dedicated screenshot bot instead. @screenshotit_bot.