2
我已經開始用webhooks創建一個機器人電報。 我的第一個問題:我必須把網站的網址與HTTPS?我的網站不是HTTPS,而只是HTTP。電報只需要HTTPS?Webhook電報機器人php不運行
第二個問題:當我啓用webhook時,我把這個:「php:// input」。
php ini_set('error_reporting', E_ALL);
$botToken ="*********************";
$website="https://api.telegram.org/bot".$botToken;
$update=file_get_contents("php://input");//before: $website."/getupdates"
$updateArray=json_decode($update, TRUE);
$chatID=$updateArray["message"]["chat"]["id"]; $message=$updateArray["message"]["text"];
switch($message) { case "/saluto": sendMessage($chatID, "Ciao, sono il bot di Vincenzo e Francesco"); >break; case "/comiato": sendMessage($chatID, "Ciao è stato bello parlare con te"); break; case default: sendMessage($chatID, "Non ho capito!"); break; }
function sendMessage($chatID, $message) { $url=GLOBALS[$website]./"sendMessagechat_id=".$chatID."&text=".urlencode($messag>e); file_get_contents($url); }
?>