Telegram bot使用WebHook

设置 WebHook #

设置漫游器隐私(可选

发送/setprivacy@BotFather

设置 WebHook

访问https://api.telegram.org/bot{my_bot_token}/setWebhook?url={url_to_send_updates_to}

WebHook 地址需要 https 协议

查看当前 WebHook 设置

访问https://api.telegram.org/bot{my_bot_token}/getWebhookInfo

PHP 处理 WebHook #

<?php define('BOT_TOKEN', 'my_bot_token');
define('API_URL', 'https://api.telegram.org/bot'.BOT_TOKEN.'/');
// read incoming info and grab the chatID
$content = file_get_contents("php://input");
$update = json_decode($content, true);
$chatID = $update["message"]["chat"]["id"];
$got_message = $update["message"]["text"];
// compose reply
$reply =  $got_message;  // send reply
$sendto =API_URL."sendMessage?chat_id=".$chatID."&text=".$reply;file_get_contents($sendto);