@tgBotLearn · 730 subscribers
اگه دنبال «شروع برنامه نویسی» یا «یادگیری یه مهارت پر درآمد» هستی، ربات تلگرام یکی از بهترین گزینه هاته × دوره جامع ساخت ربات تلگرام: • بیش از ۲۸ ساعت ویدئو • در طول ۶۰ جلسه • بدون نیاز به دانش اولیه • پشتیبانی دائمی ثبت نام و اطلاعات بیشتر @TheARC
The short link opens the channel straight in the Telegram app — not in a browser tab.
tg.me/go/tgBotLearnIs this your channel? Add @tgme as admin — and see how many people click your links. Get the stats →
Channel created February 23, 2021per Telegram
We have been tracking it since August 6, 2026
In all that time the channel has changed neither its name, nor its @username, nor its avatar.
We show only what we have seen ourselves.
sendMessageeditMessageTextdeleteMessagesendPhotosendVideosendDocumentsendChatActionanswerCallbackQueryforwardMessagecopyMessagegetChatMembereditMessageReplyMarkupsendMessage (با business_connection_id)function bot($method, $data = [])
{
$url = "https://api.telegram.org/bot" . API_TOKEN . "/" . $method;
$options = [
'http' => [
'method' => 'POST',
'header' => "Content-Type: application/x-www-form-urlencoded\r\n",
'content' => http_build_query($data),
'ignore_errors' => true
]
];
$context = stream_context_create($options);
return json_decode(
file_get_contents($url, false, $context),
true
);
}
function message($chat_id, $msg, $markup = null, $reply_to_message_id = null)
{
$msg = urldecode($msg);
return bot('sendMessage', [
'chat_id' => $chat_id,
'text' => $msg,
'disable_web_page_preview' => true,
'reply_markup' => $markup,
'parse_mode' => 'HTML',
'reply_to_message_id' => $reply_to_message_id
]);
}