Cara Membuat Bot Telegram Auto Reply

Cara Membuat Bot Telegram Auto Reply

Q. ow to use auto-reply in telegram?

A. Auto-reply in telegram is considered very useful for automatically sharing information with your loyal customers and sending a warm welcome message to new customers in which the inside commands of auto-reply. This will make your journey more interactive to have the feature of telegram auto-response.

Sending Telegram auto-reply messages

Script Ditaruh di Scheduller, PPP, Netwatch

Scheduler bisa gunakan jika ingin menjalankan script secara berkala dalam waktu tertentu.

Untuk pemicu event tertentu, ada beberapa fitur di mikrotik yang mengizinkan kita untuk menyisipkan script.

Introduction To Auto-Reply In Telegram

Following the enormous success of Auto-Reply for WhatsApp and Instagram, GetITSMS has released a new feature for the business for Telegram, which is appropriately titled Auto-Reply in Telegram.

When you are away from your device, you may still reply to your friends and contacts using Telegram’s amazing auto-response feature. This function will send a predetermined reply on your behalf if you are not available to react when someone sends you a message on Telegram.

You can designate which contacts or groups should receive the automated reply, as well as alternative rules and replies for various instances. Additionally, you can decide to only respond to particular messages, in which case the auto-reply will only be sent when the recipient’s message corresponds to the predefined template answer.

The features of Telegram auto-response can have. What you can do with Auto-Reply in Telegram is listed below:

Memakai BOT telegram untuk mengirim pesan

Mengirim pesan menggunakan bot caranya juga sama seperti membuka pesan/inbox, yaitu dengan menggunakan url dengan format tertentu.

Bedanya kita harus tau chatID dari lawan yang akan kita chat, baik orang ataupun group.

Group dan orang punya chatID masing masing.

Cara untuk mendapatkan chat ID lawan biacara dengan mudah adalah dengan mengirim pesan dulu ke bot telegram.

Sedangkan untuk mengetahui chatID group, kita invit saja bot kedalam group, nanti akan muncul di di inbox bot mengenai informasi group termasuk chatID nya.

Jika tidak ada/belum muncul notifikasi group, ulanglah prosesnya/reinvite bot ke grup sampai muncul notifikasi di inbox bot nya.

Untuk mengirim pesan gunakan format url berikut ini:

misal kita akan mengirim pesan menggunakan bot ke group dengan chatID -4019824652

Format diatas nantinya akan kita pakai di script mikrotik guna mengririm output script ke group telegram melalui bot yang teleh kita buat tadi.

Di group nanti akan muncul pesan yang telah kita kirim menggunakan bot telegram dengan cara diatas.

Nah percobaan sudah berhasil, bot sudah bisa mengirim pesan ke group yang kita inginkan.

Selanjutnya kita akan gunakan bot ini untuk mengirim output script mikrotik supaya bisa dibaca di group telegram monitoring.

Script notifikasi Client PPPoE Terputus/Diskonek

Agar saat client diskonek/terputus kita dapat notifikasi di group telegram maka taruh script ini di tab script profile PPPoE dari user yang ingin dimonitor.

Paste pada kolom On Down.

Ganti xxxxx dengan token bot anda, sedangkan yyyyy diganti dengan chatID dari group telegram anda.

Kenapa Perlu Bikin Bot Ucapan Welcome di Grup Telegram?

Bagi yang mempunyai grup komunitas, menurut kami adanya ucapan selamat datang ke member baru terbilang cukup penting sih.

Alasannya, karena ucapan selamat ini berfungsi untuk menyambut hangat anggota baru yang datang ke grup tersebut. Keuntungannya kamu/kami tidak perlu memantau dan mengucapkan selamat datang secara manual.

Karena semua sudah dikirimkan otomatis oleh bot Telegram. Apalagi kalau link undangan grup ini kamu sebar di sosial media. Sehingga sulit untuk memantau anggota yang baru masuk dan hanya sekedar memberi ucapan selamat datang saja.

Obtaining the Chat GPT API Token

To use the Chat GPT API, you will need an API token. The token can be obtained from the OpenAI platform by signing up and creating your own token. Once you have the token, you can use it in your Python program to authenticate the API requests. It's important to keep your token secure as it grants access to your Chat GPT API usage.

Adding a personalized message to your Telegram auto-reply

Creating a Telegram Bot

To create a Telegram bot, you will need to use the Telegram BotFather service. BotFather is a special bot provided by Telegram that allows you to create and manage bots. Once you create your bot using BotFather, you will receive a bot token, which is essential for interacting with your bot programmatically. We will use the bot token to configure our Flask API and enable the bot to receive messages.

A webhook is a way for Telegram to send received messages to your Flask API. By configuring a webhook for your bot, you can ensure that incoming messages are forwarded to your defined endpoint. To set up a webhook, you will need a publicly accessible URL where your Flask API is hosted. In this tutorial, we will use a tunneling service called ngrok to make our local Flask API accessible by Telegram.